对于HTML页面,在a开始标签中匹配href属性内容的最合理的正则表达式是什么?假设href属性内容使用双引号包围,需要将匹配内容放到第一个匹配组中。
未知类型:{'options': ['[a href="([^"]*)"[^]*]>', '(?is)*]href="([^"]*)"[^>*]>', '[a\\s[^]*]href="([^"]*)"[^>*]>', '[a\\s[^]*]href="([^"]*)">'], 'type': 102}
未知类型:{'options': ['[a href="([^"]*)"[^]*]>', '(?is)*]href="([^"]*)"[^>*]>', '[a\\s[^]*]href="([^"]*)"[^>*]>', '[a\\s[^]*]href="([^"]*)">'], 'type': 102}
举一反三
- 以下哪些是[a]的正确写法() 未知类型:{'options': ['[a href=”xxx.rar”]链接[/]', '[a href=”index.html”]链接[/]', '[a href=”http://www.baidu.com”]链接[/]', '[a href=”xxx.jpg”]链接[/]'], 'type': 102}
- 以下哪些是[a]的正确写法() 未知类型:{'options': ['[a href=”xxx.xlsx”]链接[/]', '<a href=”', '”>链接</a>', '[a href=” zs@163.com”]链接[/]', '[a href=”javascript:;”]链接[/]'], 'type': 102}
- 如何在新窗口打开链接? 未知类型:{'options': ['[a href="url" new]首页[/]', '[a href="url" target="_blank"]首页[/]', '[a href="url" target="new"]首页[/]', '[a href="url" target="self"]首页[/]'], 'type': 102}
- 下面哪种写法可以链接到百度网页? 未知类型:{'options': ['[a href="百度"]百度[/]', '[a href="baidu.com" target="new"]百度[/]', '[a href="http://baidu.com" target="new"]百度[/]', '[a href="hhtp://www.baidu.com" target="new"]百度[/]'], 'type': 102}
- 在页面中创建标签可以方便超链接在本页面中跳转,假设标签名为“ test”,正确的超链接语句是( )。 未知类型:{'options': ['[a href=”test ”][/]', '[a href=”#test ”][/]', '[a name=”test ”][/]', '[a name=”#test ”][/]'], 'type': 102}