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.
在 Emacs 中,我试图在数字实例前面加上一个文本字符串,这样每个数字</a>1</h2>都会变成</a>Chapter 1</h2>等等。
</a>1</h2>
</a>Chapter 1</h2>
我可以使用这个正则表达式找到匹配项:</a>\([0-9]+\)
</a>\([0-9]+\)
如何在我的替换字符串中指定现有的匹配数字,而不是整个字符串?
您已正确使用\(and\)将数字包含在捕获组中,您可以在正则表达式中将其写入替换字符串\1(因为这是第一个捕获组)。所以你的替换字符串将是
\(
\)
\1
</a>Chapter \1