假设我想匹配一个“单词”字符( \w ,但不包括“uu”,或匹配空白字符( \s ,但不包括“\t”。我该怎么做?
\w
\s
使用否定类,包括\w或\s。
/[^\W_]/ # anything that's not a non-word character and not _ /[^\S\t]/ # anything that's not a non-space character and not \t