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.
答えが見つからないように見える単純な問題があります。特定の文字列をすべて検索する正規表現が必要です。たとえば、文字列「hi」の任意の数の出現を検索していた場合、次のような文字列で一致が得られます。
hihi 12hi11h hi34hi
ではありません:
hh1ii iiihh1h
文字列に一致する正規表現は、文字列自体です。
ただし、特殊文字はエスケープすることを忘れないでください。
たとえば、「hi」の出現回数に一致する文字列は次のとおりです。hi
hi
注:ではegrep、正規表現を一重引用符で囲む必要があります。egrep '(hi){2,}' file.txt
egrep
egrep '(hi){2,}' file.txt