我使用这种正则,匹配不到,求改进var res = str.match(/\open.*?\over/g)
var res = str.match(/\open.*?\over/g)
你要匹配换行符,这个不能用.*,而需要用
.*
[sS]*
所以你的匹配应该是:
var res = str.match(/\open[sS]*\over/g)
2.1m questions
2.1m answers
60 comments
57.0k users