Eric wrote:
How to i search the colon in the data and then pick characters
after colon. for eg:
ACTUAL DATA
Date: Fri Aug 04 15:14:38 EDT 2006
REQURED DATA
Fri Aug 04 15:14:38 EDT 2006
JScript:
output = input.replace(/.*:/,"")
vbscript
:
Set re = New RexExp
re.Pattern = ".*:"
output = re.Replace(input,"")
--
Dave Anderson
Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.