.Pattern = "href=""(http(s)?://[\s\S]+?)"""   '// 提取链接地址的正则表达式 上面可以提取任意的链接但如果要提取包含特定字符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?"