js的字符串方法总结
- 一、字符串长度
- 二、查找字符串中的字符串
- 三、检索字符串中的字符串
- 四、提取部分字符串
- 五、替换字符串内容
- 六、转换为大写和小写
- 七、concat() 连接两个或多个字符串:
- 八、trim() 方法删除字符串两端的空白符:
- 九、提取字符串字符
- 十、属性访问(Property Access)
- 十一、把字符串转换为数组
一、字符串长度
length
属性返回字符串的长度:
let s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
console.log(s.length) //26
二、查找字符串中的字符串
indexOf()
方法返回字符串中指定文本首次出现的索引(位置):
对于字符串,JavaScript 从零计算位置。
0 是字符串中的第一个位置,1 是第二个,2 是第三个 …
let str = "The full name of China is the People's Republic of China.";
let pos = str.indexOf("China");
console.log(pos) //17
lastIndexOf()
方法返回指定文本在字符串中最后一次出现的索引:
let str = "The full name of China is the People's Republic of China.";
let pos = str.lastIndexOf("China")
console.log(pos) //51
如果未找到文本, indexOf() 和 lastIndexOf() 均返回 -1。
let str = "The full name of China is the People's Republic of China.";
let pos = str.indexOf("apple")
console.log(pos) //-1
两种方法都接受作为检索起始位置的第二个参数。
var str = "The full name of China is the People's Republic of China.";
var pos = str.indexOf("China", 18);
console.log(pos) //51
lastIndexOf() 方法向后进行检索(从尾到头),这意味着:假如第二个参数是 50,则从位置 50 开始检索,直到字符串的起点。
var str = "The full name of China is the People's Republic of China.";
var pos = str.lastIndexOf("China", 50);
console.log(pos) //17
三、检索字符串中的字符串
search()
方法搜索特定值的字符串,并返回匹配的位置:
var str = "The full name of China is the People's Republic of China.";
var pos = str.search("name");
console.log(pos) //17
您注意到了吗?
两种方法,indexOf() 与 search(),是相等的。
这两种方法是不相等的。区别在于:
search() 方法无法设置第二个开始位置参数。
indexOf() 方法无法设置更强大的搜索值(正则表达式)
四、提取部分字符串
slice()
提取字符串的某个部分并在新字符串中返回被提取的部分。
该方法设置两个参数:起始索引(开始位置),终止索引(结束位置)。
var str = "Apple, Banana, Mango";
var res = str.slice(7,13);
console.log(res) //Banana
如果某个参数为负,则从字符串的结尾开始计数。
var str = "Apple, Banana, Mango";
var res = str.slice(-13,-7);
console.log(res) //Banana
如果省略第二个参数,则该方法将裁剪字符串的剩余部分:
var str = "Apple, Banana, Mango";
var res = str.slice(7);
console.log(res) //Banana, Mango
或者从结尾计数:
var str = "Apple, Banana, Mango";
var res = str.slice(-13);
console.log(res) //Banana, Mango
substring()
方法类似于 slice()。
不同之处在于 substring() 无法接受负的索引。
var str = "Apple, Banana, Mango";
var res = str.substring(7,13);
console.log(res) //Banana
如果省略第二个参数,则该 substring() 将裁剪字符串的剩余部分。substr()
方法类似于 slice()。
不同之处在于第二个参数规定被提取部分的长度。
var str = "Apple, Banana, Mango";
var res = str.substr(7,6);
console.log(res) //Banana
如果省略第二个参数,则该 substr() 将裁剪字符串的剩余部分。
var str = "Apple, Banana, Mango";
var res = str.substr(7);
console.log(res) //Banana, Mango
如果首个参数为负,则从字符串的结尾计算位置。
var str = "Apple, Banana, Mango";
var res = str.substr(-5);
console.log(res) //Mango
第二个参数不能为负,因为它定义的是长度。
五、替换字符串内容
replace()
方法用另一个值替换在字符串中指定的值:
str = "Please visit Microsoft!";
var n = str.replace("Microsoft", "W3School");
console.log(n) //Please visit W3School!
replace() 方法不会改变调用它的字符串。它返回的是新字符串。
默认地,replace() 只替换首个匹配:
str = "Please visit Microsoft and Microsoft!";
var n = str.replace("Microsoft", "W3School");
console.log(n) //Please visit W3School and Microsoft!
默认地,replace() 对大小写敏感。因此不对匹配 MICROSOFT:
str = "Please visit Microsoft!";
var n = str.replace("MICROSOFT", "W3School");
console.log(n) //Please visit Microsoft!
如需执行大小写不敏感的替换,请使用正则表达式 /i(大小写不敏感):
str = "Please visit Microsoft!";
var n = str.replace(/MICROSOFT/i, "W3School");
console.log(n) //Please visit W3School!
请注意正则表达式不带引号。
如需替换所有匹配,请使用正则表达式的 g 标志(用于全局搜索)
str = "Please visit Microsoft and Microsoft!";
var n = str.replace(/Microsoft/g, "W3School");
console.log(n) //Please visit W3School and W3School!
六、转换为大写和小写
toUpperCase()
把字符串转换为大写:
var text1 = "Hello World!"; // 字符串
var text2 = text1.toUpperCase(); // text2 是被转换为大写的 text1
console.log(text2) //HELLO WORLD!
toLowerCase()
把字符串转换为小写:
var text1 = "Hello World!"; // 字符串
var text2 = text1.toLowerCase(); // text2 是被转换为小写的 text1
console.log(text2) //hello world!
七、concat() 连接两个或多个字符串:
var text1 = "Hello";
var text2 = "World";
text3 = text1.concat(" ",text2);
console.log(text3) //Hello World
concat() 方法可用于代替加运算符。下面两行是等效的:
var text = “Hello” + " " + “World!”;
var text = “Hello”.concat(" ",“World!”);
八、trim() 方法删除字符串两端的空白符:
var str = " Hello World! ";
console.log(str.trim()) //Hello World!
九、提取字符串字符
charAt()
方法返回字符串中指定下标(位置)的字符串:
var str = "HELLO WORLD";
str.charAt(0); // H
charCodeAt()
方法返回字符串中指定索引的字符 unicode 编码:
var str = "HELLO WORLD";
str.charCodeAt(0); // 72
十、属性访问(Property Access)
var str = "HELLO WORLD";
str[0]; //H
十一、把字符串转换为数组
split()
将字符串转换为数组:
var txt = "a,b,c,d,e"; // 字符串
console.log(txt.split(",")) //['a', 'b', 'c', 'd', 'e']
console.log(txt.split(" ")); //['a,b,c,d,e']
console.log(txt.split("|")) //['a,b,c,d,e']