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.
wordA - キャプチャしてはなりません
単語 - キャプチャする必要があります
これはうまくいきません....
\w+[^A]\b
なんで?
[^A]スペースに一致します:
[^A]
hello world ^^^^^^
試してくださいlook-behind:
look-behind
\w+(?<=[^A])\b
英単語に取り組んでいる場合は、これを試してください。
\w+[a-zB-Z_]\b
実際、私の場合はうまくいくように見える3番目の方法を見つけました:
\w+[^A\s]\b
否定的な後読みを試してください。
\w+\b(?<!A)