我的要求是
“字符串不应为空或空”
例如,字符串可以包含任意数量的字符或后跟任何特殊字符的字符串,但不能为空,例如,字符串可以包含“a,b,c”或“xyz123abc”或“12!@$#% &*()9" 或 "aa bb cc"
所以,这就是我尝试 使用正则表达式的空白或空格:-
^\s*$
^ is the beginning of string anchor
$ is the end of string anchor
\s is the whitespace character class
* is zero-or-more repetition of
我被困在如何否定正则表达式 ^\s*$ 以便它接受任何字符串,如 "a,b,c" 或 "xyz" 或 "12!@$#%&*()9"
任何帮助表示赞赏。