使用vb提取包含特定字符的url正则表达式

发布时间:2020-06-07编辑:脚本学堂
.Pattern = "href=""(http(s)?://[\s\S]+?)""" '// 提取链接地址的正则表达式
上面可以提取任意的链接但如果要提取包含特定字符note=的链接要怎么写比如下面的链接
h

.Pattern = "href=""(http(s)?://[sS]+?)""" '// 提取链接地址的正则表达式
上面可以提取任意的链接

但如果要提取包含特定字符note=的链接要怎么写比如下面的链接
href="http://www.xxx.com/note=zoom?"
其中:note= 就是特定字符

同时提取包含特定字符:note=,notes=的链接要怎么写
href="http://www.xxx.com/note=zoom?"
href="http://www.xxx.com/notes=zooms?"

解决方法:
.Pattern = "href=""(http(s)?://[sS]*?note=[sS]*?)"""