2 Star 1 Fork 1

jiangmu/vue解析

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
exex.html 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
qq281113270 提交于 2019-03-28 14:24 . Add files via upload
<!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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sixlty/vue-parsing.git
[email protected]:sixlty/vue-parsing.git
sixlty
vue-parsing
vue解析
master

搜索帮助