JavaScript string字符串对象常见方法
Posted smile-xin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript string字符串对象常见方法相关的知识,希望对你有一定的参考价值。
本文总结下几种常见的字符串方法
一、字符方法 chartAt()与charCodeAt()
var str="hello world" //chartAt()以单字符字符串的形式返回给定位置的那个字符 console.log(str.charAt(4));//o //charCodeAt()返回的是字符编码。 console.log(str.charCodeAt(4));//111
二、字符串操作方法
var str="hello world" var str1=str.concat(‘! i am from China‘); console.log(str1);//hello world! i am from China //类似于,常用+来拼接 var msg=‘! i am from China‘; console.log(str+msg);//hello world! i am from China
2.2 slice(start,[end])
var str="hello world"; console.log(str.slice(0,7))//hello w 空格算一个
var str="hello world"; console.log(str.substr(2,5));//llo w
var str="hello world"; console.log(str.substring(2,5));//llo
2.5 repeat(n),n是数字参数,代表字符串重复次数.ES6新增
var str="hello world"; console.log(str.repeat(2));//hello worldhello world
三、字符串位置方法
3.1 indexOf(substr, [start]);
var str="hello world"; console.log(str.indexOf(‘w‘));//6 console.log(str.indexOf(‘world‘));//6
3.2 lastIndexOf(substr, [start])
var str="hello world"; console.log(str.lastIndexOf(‘l‘));//9
3.3 includes()返回布尔值,表示是否找到了参数字符串 ES6新增
var str="hello world"; console.log(str.includes(‘he‘));//true console.log(str.includes(‘ho‘));//false
3.4 startsWith()//返回布尔值,表示参数字符串是否在源字符串的头部 ES6新增
var str="hello world"; console.log(str.startsWith(‘world‘));//false
3.5 endsWith()返回布尔值,表示参数字符串是否在源字符串的尾部ES6新增
var str="hello world"; console.log(str.endsWith(‘world‘));//true
3.6 去空格
var str3=" hello world " console.log(str3.length);//18 var str4=str3.trim(); console.log(str4);//hello world console.log(str4.length);//11
四、字符串大小写转换
4.1 toLowerCase() 方法用于把字符串转换为小写。
var sss="I LIKE PLAYING GAME"; console.log(sss.toLocaleLowerCase());//i like playing game
4.2 toUpperCase()方法用于把字符串转换为大写。
var str="hello world"; console.log(str.toLocaleUpperCase());//HELLO WORLD
五、字符串的模式匹配方法
5.1match(regexp) 返回数组对象
var intRegex = /[0-9 -()+]+$/; var myNumber = ‘999‘; var myInt = myNumber.match(intRegex); console.log(myInt[0]); //999 var myString = ‘999 JS Coders‘; var myInt2 = myString.match(intRegex); console.log(myInt2);//null
5.2 search(regexp)方法用于检索字符串中指定的子字符串,或检索与正则表达式相匹配的子字符串,如果找到,返回与 regexp 相匹配的子串的起始位置,否则返回 -1。
var intRegex = /[0-9 -()+]+$/; var myNumber = ‘999‘; var isInt=myNumber.search(intRegex); console.log(isInt);//0
5.3replace(regexp/substr, replacetext)
var str="hello world"; console.log(str.replace(/world/i,"China"));//hello China
5.4 split(delimiter, [limit])
var aa="asd,ffg,hjkl" console.log(aa.split(‘,‘,3));//["asd", "ffg", "hjkl"]
以上是关于JavaScript string字符串对象常见方法的主要内容,如果未能解决你的问题,请参考以下文章