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”的任意数量 pf 出现,那么我会得到以下字符串的匹配项:
hihi 12hi11h hi34hi
但不在:
hh1ii iiihh1h
匹配字符串的正则表达式是字符串本身。
不过,请记住转义任何特殊字符。
例如,匹配任意数量的“hi”的字符串是:hi
hi
注意:在 中egrep,您需要将正则表达式放在单引号中:egrep '(hi){2,}' file.txt
egrep
egrep '(hi){2,}' file.txt