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.
「モバイル」を含み、「ビデオ」を含まないすべての文字列に一致する単一の正規表現を考え出そうとしています。単一の表現でこれを行うのに苦労しており、助けていただければ幸いです。
否定先読みアサーションを使用します。
^(?!.*video).*mobile
例:
$ cat 1.txt audio-mobile mobile-video mobile-video video-mobile videomobile mobile audio-mobile audio $ grep -P '^(?!.*video).*mobile' 1.txt audio-mobile mobile audio-mobile