All whitespace characters except \n...
Posted: Fri Feb 29, 2008 4:57 pm
How do I say match all whitespace characters except for \n.
I tried it with words - trying to match all word characters apart from "o":
[\w^o] : matched o anyway
[\w[^o]] : invalid
I tried it with words - trying to match all word characters apart from "o":
[\w^o] : matched o anyway
[\w[^o]] : invalid