标签: regex windows notepad++
我想在扩展名.html
.html
bla blah THIS-IS-MY-LINK .html blah blah
我制作了一个正则表达式,但不是很好,因为它在我的链接之前选择了所有内容,而不仅仅是我的链接:
.*(\w+( .html))
任何人都可以帮我一点吗?
答案 0 :(得分:1)
假设1个非空白字符与.html之间必须有常规空格,您可以使用
\S+ \.html
<强>详情:
\S+
\s
\h
\.html