此篇文章献给刚入们的小白,还有基础比较薄弱的朋友;
知识点都孟郊贾岛是比较简单,工作当中经常会用到;
如果觉得能用上就收藏,方便以后使用;
let s = "hello,world";let ss = "你相信命运吗?";let aa = s.split(',');let bb = ss.split('');console.log(aa);//["hello", "world"]console.log(bb);//["你", "相", "信", "命", "运", "吗", "?"]
let s = "hello,world";let ss = "你相信命运吗?";let aa = s.charat(6);let bb = ss.charat(3);console.log(aa);//wconsole.log(bb);//命
let s = "hello,world";let ss = "你相信命运吗?";let aa = s.charat(s.length - 1);let bb = ss.charat(ss.length - 1);console.log(aa);//dconsole.log(bb);//?
两个值:第一个是开始位置,第二个是结束位置;
let s = "hello,world";let ss = "你相信命运吗?";let aa = s.substring(1,4);let bb = ss.substring(2,5);console.log(aa);//ellconsole.log(bb);//信命运
一个值:字符串开始截取的位置;
let s = "hello,world";let ss = "你相信命运吗?";let aa = s.substring(1);let bb = ss初中学习计划.substring(2);console.log(aa);//ello,worldconsole.log(bb);//信命运吗?
let s = "hello,world";let ss = "你相信命运吗?";let aa = s.slice(1,4);let bb = ss.slice(2);console.log(aa);//ellconsole.log(bb);//信命运吗?
let s = "hello,world,hello,world";let ss = "你相信命运吗?你相信命运吗?";let aa = s.indexof('w');let bb = ss.indexof('相');console.log(aa);//6console.log(bb);//1
let s = "hello,world,hello,world";let ss = "你相信命运吗?你相信命运吗?";let aa = s.lastindexof('w');let bb = ss.lastindexof('相');console.log(aa);//18console.log(bb);//8
let s = "hello,world,hello,world";let ss = "你相信命运吗?你相信命运吗?";let aa = s.indexof('w',10);let bb = ss.indexof('相',3);console.log(aa);//18console.log(bb);//8
let s = "hello,world";let ss = "中国加油图片可爱你相信命运吗?";let aa = s.replace('h','h');let bb = ss.replace('你','他');console.log(aa);//hello,worldconsole.log(bb);//他相信命运吗?
let s = "hello,world";let aa = s.toupperca();console.log(aa);//hello,world
记住,在javascript中字符串是固定不变的,类似replace()和toupperca()的方法都返回新字符串,原字符串本身并没有发生改变。
在ecmascript 5中,字符串可以当做只读数组,除了使用charat()方法,也可以使用方括号来访问字符串中的单个字符(16位值):
最有效减肥茶排行榜s = “hello, world”;
s[0] // => “h”
s[s.leng爸爸的唠叨th – 1] // => “d”
本文发布于:2023-04-05 08:46:18,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/2600588d459fea369e6c16f319eb5f89.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:jsreplace函数怎么用(sql语句replace的用法方法).doc
本文 PDF 下载地址:jsreplace函数怎么用(sql语句replace的用法方法).pdf
留言与评论(共有 0 条评论) |