1 Star 0 Fork 0

蓝莓铁匠/js-practice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
5.字符串对象.html 807 Bytes
一键复制 编辑 原始数据 按行查看 历史
蓝莓铁匠 提交于 2015-09-10 21:52 . add files
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
//search方法
//var str="hello world";
//document.write(str.search(/world/));
//match()方法
// "i like javascript"字符串中检索不同的子串
//
// var str="i like JavaScript!"
// document.write(str.match("JavaScript")+"<br />")
// document.write(str.match("javascript")+"<br />")
// document.write(str.match("JavaScript")+"<br />")
//split()方法
//
//var str="JavaScript ";
//document.write(str.split(" ")+"<br />")
//document.write(str.split("")+"<br />")
//document.write(str.split(" ",3)+"<br />")
var str="hello world";
document.write(str.replace(/world/,"JavaScript"));
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mithy/js-practice.git
git@gitee.com:mithy/js-practice.git
mithy
js-practice
js-practice
master

搜索帮助