web-dev-qa-db-ja.com

クラスから一部の文字を除外するにはどうすればよいですか?

「単語」の文字と一致させたいとしましょう(\w)、ただし「_」を除外するか、空白文字(\s)、ただし「\ t」は除外します。これどうやってするの?

33
planetp

\ 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
45
ysth