本文總結下幾種常見的字符串方法正則表達式
1、字符方法 chartAt()與charCodeAt()數組
var str="hello world" //chartAt()以單字符字符串的形式返回給定位置的那個字符 console.log(str.charAt(4));//o //charCodeAt()返回的是字符編碼。 console.log(str.charCodeAt(4));//111
2、字符串操做方法編碼
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])spa
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新增code
var str="hello world"; console.log(str.repeat(2));//hello worldhello world
3、字符串位置方法regexp
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])blog
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、字符串大小寫轉換
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、字符串的模式匹配方法
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"]