将所有 <sup> 变成 links,其中 link 是 sup 标签的内容

turn all <sup> into links with the link being the contents of the sup tag

我有一个带有上标标签的文本文档,我想将其转换为链接。

<sup>3</sup>
<sup>4</sup>

进入

<a href="#3"><sup>3</sup></a>
<a href="#4"><sup>4</sup></a>

我可以使用正则表达式搜索 sup 标签的内容

<sup>*</sup>

但是有没有办法复制标签的内容,并多次替换呢?像 -

<a href="#VAR"><sup>VAR</sup></a>

它在 JavaScript 中可能容易得多,但我想使用记事本 ++ 或类似工具在许多文件上对其进行硬编码。

查找:<sup>(.*?)<\/sup>

替换:<a href="#"><sup></sup></a><a href="#"><sup></sup></a>

查看演示。

https://www.regex101.com/r/rK5lU1/16

怎么样:

查找内容:(<sup>(.*?)<\/sup>)
替换为:<a href="#"></a>