正则表达式将网址转换为HTML <a href=""> hyperlinks in Notepad++?</a>

时间:2012-12-01 09:28:38

标签: regex notepad++

我在文本文件中有一个URL列表,我正在尝试将其更改为HTML,但我失败了。

我的网址采用以下格式:

http://mydomain.com/here-are-my-links.html

有没有人知道我可以在Notepad ++中运行的正则表达式搜索/替换命令将我的URL列表更改为以下格式:

<a href="http://mydomain.com/here-are-my-links.html">here are my links</a>

1 个答案:

答案 0 :(得分:5)

使用正则表达式

(http://mydomain.com/(.*?)\.html)

并将其替换为

<a href="\1">\2</a>


如果您想将-更改为space,可以执行此操作

-(?=[^<>]*?</a>)

并将其替换为