Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単語を見つけるために使用する次の正規表現があります。
(?<=\s)([\w\@\-]+)(?=\s)
この正規表現をさらに変更して、単語のリストを除外したいと思います。たとえば、単語が「cat」または「dog」の場合は一致しません。
これを達成するために正規表現に対応するにはどうすればよいですか?
\b(?!(?:dog|cat)\b)([\w@-]+)\b
単語の開始/終了を一致させたい場合はこちら@
@
(?<=\s)(?!(?:dog|cat)(?=\s))([\w\@\-]+)(?=\s)