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.
まだ正規表現のルックアラウンドに慣れていますが、取得できないようです
\b(?>! key)foreign\b
正しい解決策になるには?一部のテキストでforeignという単語のすべてのインスタンスを見つけようとしていますが、外部キーまたは外部キーではありません。
先読みは後にする必要がforeignあります(そしてあなたは必要ありません>):
foreign
>
\bforeign(?! key)\b
単語の境界がforeignkeyケースを処理します。
foreignkey
どうですか:\bforeign(?!\s?key)\b
\bforeign(?!\s?key)\b
例: http://regexr.com?343k9