「単語」の文字と一致させたいとしましょう(\w)、ただし「_」を除外するか、空白文字(\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