Re: My brain is fried, can someone give me some regularexpression help please...

2000-09-16 Thread sbernard
How about an RegEx that removes all characters that aren't tabs and then count the remainder. If CF's RegEx engine supported \t it would be really easy. You'll have to substitute something legit for "::TAB::". I tried something like, REReplace(strOrderFile, #Chr(9)#, "", "ALL") in the past and

Re: My brain is fried, can someone give me some regularexpression help please...

2000-09-17 Thread Sean Renet
That did the trick, thanks. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 16, 2000 9:15 PM Subject: Re: My brain is fried, can someone give me some regularexpression help please... > How about an RegEx that removes all