stripchar(
David Thompson
dthmpsn1 at uiuc.edu
Fri Jan 11 06:38:48 PST 2008
>How do I get tab and CR characters in a stripchar( function? I've tried
>
>stripchar(TXT,"¬~") and
>stripchar(TXT,"¶¶¬¬ ~") and
>stripchar(TXT,"¦ ~") and
>stripchar(TXT,"chr(9)~")
>
>Can't get it to work. I'm looking for a way to
>designate the carriage return or tab characters
>in the pair. Seems like I've done this before,
>but, of course, can't remember now.
stripchar(TXT,¬+¬+¶+¶)
or
stripchar(TXT,chr(9)+chr(9)+chr(13)+chr(13))
or
stripchar(TXT,tab()+tab()+cr()+cr())
Dave
More information about the Qna
mailing list