我正在用乳胶写一篇论文,但不小心写成\cite[]
了\cite{}
. 我可以手动浏览整个文档,但我想知道如何在 notepad++ 中使用正则表达式来做到这一点。
我最初尝试\\cite\[(.*)\]
并替换\cite{\1}
which 适用于简单的情况,例如
\cite[hello world] blah blah
但是,如果段落中有两个或多个引用,则它匹配所有引用。所以例如
\cite[aaa]\cite[bbb] something here \cite[ccc]
匹配整行
如何获得非贪婪匹配,以便将上述行匹配为 3 个单独的匹配项,并且替换命令的结果应该给我
\cite{aaa}\cite{bbb} something here \cite{ccc}