当前位置:Gxlcms > JavaScript > 对JS操作字符串的方法汇总

对JS操作字符串的方法汇总

时间:2021-07-01 10:21:17 帮助过:7人阅读

1:concat() 将两个或多个字符的文本组合起来,返回一个新的字符串

1var f1="hello";
2var f2="world";
3document.write(f1.concat(f2)) //hello world

2:indexof() 返回字符串中一个子串第一处出现的索引。如果没有匹配项,返回 -1

1var f3="hello world"
2console.log(f3.indexOf('world')) //6
3console.log(f3.indexOf('World')) //-1
4console.log(f3.indexOf('hello')) //0


注意:indexOf区分大小写

3:charAt() – 返回指定位置的字符。  

1var f4="hello world";
2console.log(f4.charAt(1)) //e
3console.log(f4) //hello world

4:lastIndexOf() 方法可返回一个指定的字符串值最后出现的位置,在一个字符串中的指定位置从后向前搜索。

1var f3="hello world"
2console.log(f3.lastIndexOf('world')) //6
3console.log(f3.lastIndexOf('World')) //-1
4console.log(f3.lastIndexOf('hello')) //0

5:substring() – 返回字符串的一个子串。传入参数是起始位置和结束位置(不必需)。注:参数不能为负数

1var f5="hello world"
2console.log(f5.substring(3)) //lo world
3console.log(f5.substring(3,8)) //lo wo

6:match() – 检查一个字符串是否匹配一个正则表达式。

7:replace() – 用来查找匹配一个正则表达式的字符串,然后使用新字符串代替匹配的字符串。

8:search() – 执行一个正则表达式匹配查找。如果查找成功,返回字符串中匹配的索引值。否则返回 -1 。  

9:slice() – 提取字符串的一部分,并返回一个新字符串。 (参数可以为负数)

1var f6="hello world"
2console.log(f6.slice(6)) //world
3console.log(f6.slice(6,9)) //wor

10:split() – 方法用于把一个字符串分割成字符串数组。

1var f7="hello world";
2console.log(f7.split("")); //["h", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d"]
3console.log(f7.split(" ")); //["hello", "world"]
4console.log(f7.split(" ",1)); //["hello"]

11:toLowerCase() – 将整个字符串转成小写字母。
12:toUpperCase() – 将整个字符串转成大写字母。

  

  

以上就是对JS操作字符串的方法汇总的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行