.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]*?)"""