Hi there,
I'm working with regular expressions and I wonder how to represent an ascii character? Esp chr(9) tab, char(10) newline(?) and chr(13) carriage return.
I'm trying to say, "a space or a tab or a return character, in any combination, any number of times" -- in otherwords, "white space" for source code. it would be like this I presume:
( |tab|newline|carriagereturn)*
except of course I need to know how to represent those via regular expressions.
Thanks in advance,
Sam