var str='hello word';
//split(str) 将字符串以str拆分成字符数组 不包括指定的字符
console.log(str.split(''));//['h','e' , 'l','l' ,'o' ,'' ,'w', 'o' ,'r' ,'d' ];
//replace(a,b);将a换成b 一次只能替换一个,原来的字符串不变,返回一个新的字符串
var s=str.replace('l','j');
console.log(s)//'hejlo word';
//indexOf(str) str第一次出现的位置索引 没有则返回-1
var index=str.indexOf('l');//2
console.log(index)
//lastIndexOf(str) str最后一次出现的索引 没有返回-1
var index2=str.lastIndexOf('l')
console.log(index2)//3
JavaScript中字符串最常用的几个方法
最新推荐文章于 2022-04-28 22:13:19 发布