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.
我需要用“somethingElse( anything )”替换“something[any]”,棘手的部分是任何东西都可以是任何东西,我不想替换它。可以用正则表达式吗?
PS 在实际场景中,我会使用 PHPStorm 来查看/替换它。向我展示在查找窗口中准确放置的内容对我有很大帮助。
谢谢!
想法:在正则表达式的捕获组中捕获“任何东西”。然后,在替换中反向引用它。
例如:搜索something[([^]]*)\]并替换为somethingElse($1).
something[([^]]*)\]
somethingElse($1)