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.
私は何時間も前から、この否定的な先読みを機能させようとしています。「/CCC」が後にない場合にのみ、文字列と一致する必要があります
http://refiddle.com/1xb
/(^[\w]+)(?!./CCC$)/mg
テスト文字列:
BBB/CCC AAA/DDD/CCC
私のパターンがまだ最初の行の「BBB」と一致する理由を誰かが指摘できますか?
/まず、正規表現内をエスケープする必要があります。
/
また、存在してはならないドットがあり、単語の境界がありません。
/(^\w+)\b(?!\/CCC$)/mg
リドル