1 Star 0 Fork 0

luenay/js_study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
字符串和正则相关的方法.html 873 Bytes
一键复制 编辑 原始数据 按行查看 历史
luenay 提交于 2022-04-20 00:46 . addfiles
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
<script>
var str = "1a2b3c3d5f";
var result = str.split("c");
console.log(result); // ['1a2b3', '3d5f']
var result1 = str.split(/[A-z]/);
console.log(result1); // ['1', '2', '3', '3', '5', '']
var str1 = "how old are you?";
var result2 = str1.search("old");
console.log(result2); // 4
var str3 = "hello abc aec afc";
var result3 = str3.search(/a[bdf]c/);
console.log(result3); // 6
// 提取出所有的字母
var str4 = "1a2b3c3d5f7A8B9C";
var result4 = str4.match(/[A-z]/g);
console.log(result4); // ['a', 'b', 'c', 'd', 'f', 'A', 'B', 'C']
var str5 = "apple and banana";
var result5 = str5.replace(/a/gi,"@_@");
console.log(result5); // @_@pple @_@nd b@_@n@_@n@_@
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luenay/js_study.git
git@gitee.com:luenay/js_study.git
luenay
js_study
js_study
master

搜索帮助