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.
想象一下,我有一个词“香蕉”。找到这个词的正则表达式重复语法是什么:
到目前为止,我尝试ba(na){4}s了,但没有产生任何结果。请问这样做的正确语法是什么?
ba(na){4}s
正如我在评论中提到的,您的正则表达式仅适用于从版本 6 开始的 Notepad++,该版本支持 PCRE,因此支持数字量词。以前的版本会报错。
如果您使用的是旧版本并且由于某种原因无法升级,您将无法使用该语法。你将不得不忍受类似的东西ba(na)+s,它匹配na重复多次,直到达到s.
ba(na)+s
na
s