最新回答 / 微风听雨
'<div style="width:90px;background-image:("sdfasfafd");height:20px;width:50px"></div>'.match(/^<div style="(.+)"><\/div>$/)
2020-12-09
最新回答 / 慕勒215309
var str = "[1 张三 18 2001-01-01]";var ptn = /\[\d{1,3}\s+[\u4E00-\u9FFF]{2,4}\s+\d{1,3}\s+\d{4}-\d{2}-\d{2}\]/;console.log(ptn.test(str)); //true备注:编号限1-3位数字,姓名限2-4个汉字,年龄限1-3位数字,[\u4E00-\u9FFF]用于匹配汉字。
2019-11-30