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.
[0-9]と[af]のセットにない文字を検索したい。この正規表現を書くのを手伝ってください。私は純粋に Windows ユーザーであり、特定の目的のためにこのようなものに対処しなければなりませんでした。
正規表現を使用する理由 grep を使用する理由
tr -d a-f0-9 < input-file
目的の範囲外のすべての文字を出力します。