它不起作用。我点击CTRL+F选择“正则表达式”并搜索了href=".*\.website\.com"
我没有找到我需要搜索的所有实例,<a href="xxxx.website.com/">
其中 xxxx 发生变化,长度可变,并且不包含.
我需要它来找到
<a href="cars.website.com/">
<a href="beach.website.com/">
<a href="breadloaves.website.com/">
但不是
<a href="nice.cars.website.com/">
我明白了,正确的搜索字符串是<a href="(.*).website.com/">
答案1
href="[^.]*\.website\.com\/"
应该管用。
[^.]
查找除点之外的任何字符。如果您使用.*
,则正则表达式也会匹配<a href="nice.cars.website.com/">
。
答案2
在 notepad++ 中,按CTRL+F打开“查找”菜单,确保选中正则表达式单选选项,然后搜索href=".*\.website\.com"