代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
var text="cat,bat,sat,fat";
var pattern1=/.at/g;
var matches=pattern1.exec(text);
var matches1=pattern1.exec(text);
var matches2=pattern1.exec(text);
var matches3=pattern1.exec(text);
var matches4=pattern1.exec(text);
console.log(matches)
console.log(matches1)
console.log(matches2)
console.log(matches3)
console.log(matches4)
// console.log(matches.index);//0
// console.log(matches[0]);//cat
// console.log(pattern1.lastIndex);//3
matches=pattern1.exec(text);
// console.log(matches)
// console.log(matches.index);//5
// console.log(matches[0]);//bat
// console.log(pattern1.lastIndex);//7
// var str = "abc123";
// var re = /a.c/g
// var result1 = re.test(str);
// var result2 = re.test(str);
// var result3 = re.test(str);
// var result4 = re.test(str);
// var result5 = re.test(str);
// var result6 = re.test(str);
// console.log(result1)
// console.log(result2)
// console.log(result3)
// console.log(result4)
// console.log(result5)
// console.log(result6)
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。