C
Christopher Brewster via OfficeKB.com
I'm trying to do a search that would be easy with Unix regular expressions.
I need to know if there are any non-white characters in a range. If so, I
need to do something with them. I can't use ^w in a wildcard search, so [^w]
doesn't give me "any character that isn't a white space" (it gives me an
error). I may write a little loop that moves forward one character at a
time and searches for a white-space character in each one-character range.
Does someone have a better way to do this?
Christopher Brewster
I need to know if there are any non-white characters in a range. If so, I
need to do something with them. I can't use ^w in a wildcard search, so [^w]
doesn't give me "any character that isn't a white space" (it gives me an
error). I may write a little loop that moves forward one character at a
time and searches for a white-space character in each one-character range.
Does someone have a better way to do this?
Christopher Brewster