Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下正则表达式来获取文本中的标签
(<[^ ][^><]*>)
我怎样才能让它得到除了标签之外的所有东西......
澄清:从这里把规则和这个作为主体
<asd> ba <asd><a>ddd</a>
我想得到除highlighted文本以外的所有内容
highlighted
您可以拆分,而不是使用正则表达式进行匹配。
x.split(/<[^ ][^><]*>/)
split返回所有不匹配的数组。
split
不会
>([^<]*)<
做这个把戏?该组包含您要查找的字符串。