How can I have a regular expression that tests for spaces or tabs but not newlines. I tried s but found out that it tests for newlines too.
s
I use C#/WPF but it shouldn't matter.
Use character classes: [ ]
[ ]
2.1m questions
2.1m answers
60 comments
57.0k users