Kevin,
> Yes; exampple: [^abc] returns everything EXCEPT the letters a,b,c
I tried the ScriptBasic regular expression you suggested and it only returns
a TRUE. (-1)
strip = re::match(text,
"[^abcdefghijklmnopqrstxyvwzABCDEFGHIJKLMNOPQRSTXYVWZ]")
I guess the regular expression idea isn't going to work for what I was
trying to do.
John