Whats a good way to test to see if a string is only full of whitespace characters with regex?
|
|
|||
|
|
|
Your regex statement should look for ^\s+$. It will require at least one whitespace. In case you were wondering, "white space is defined as [\t\n\f\r\p{Z}]". See http://userguide.icu-project.org/strings/regexp.
|
||||
|
|
|
(I have decided to edit my post to include concepts in the below conversation with tobyodavies.) In most instances, you want to determine whether or not something is whitespace, because whitespace is relatively insignificant and you want to skip over a string consisting of merely whitespace. So, I think what you want to determine is whether or not there are significant characters. So I tend to use the reverse test: However, to apply your particular question, this can be determined in the negative by testing: |
|||||||||||||||||||
|