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.
我在文本文档行中有示例:
set ( blah blah blah )
和
set ( blahlblah blahlbal )
set ( blah blah blah blah blah )
我正在使用 text mate 并想找到这些并替换为什么
我得到了这个与一条线一起工作,但在如何在多条线上做到这一点时遇到了困难。我试过这个:
SET \(.*\n.*\)
尝试更简单的:
set \([^)]+\)
除非该集合包含嵌套集合,否则应该可以。
我不知道textmate是否可以做到这一点
^\s*set\s*\([\S\s]*\)[^)]*$ -------------------------- ^ \s* set \s* \( [\S\s]* \) [^)]* $