我需要一些关于 js 正则表达式主题的建议。
我有一个字符串
var page = '<html attribute1="<test1>" test2 attribute2="test2"></html>';
我正在尝试获取片段
<html attribute1="<test1>" test2 attribute2="test2">
但我的代码:
page.match(/<.*?>/);
只返回第一次出现“>”的字符,因此
<html attribute1="<test1>
我应该怎么做才能忽略引号之间出现的符号“>”?请帮助我,对不起我的英语;)