一、length:判断字符串长度
var str = "hello world";
console.log(str.length); //输出结果:11
二、indexOf():判断某一子串第一次出现在另一字符串中的位置(若未出现,返回 -1 )
[ lastIndexOf():判断某一个子串最后一次出现另一字符串中的位置(若未出现,返回 -1 )]
var str = "apple";
var str1 = str.indexOf("p");
var str2 = str.indexOf("h");
var str3 = str.indexOf("pl");
var str4 = str.indexOf("pe");
console.log(str1); //输出结果:1
console.log(str2); //输出结果:-1
console.log(str3); //输出结果:2
console.log(str4); //输出结果:-1
注:多用来校测某一字符串中是否含有某一子串
三、replace():字符串替代
var str = "helloworld";
var str1 = str.replace('world','apple');
console.log(str1); //输出结果:helloapple
注:多与正则配合使用
eg.字符串去所有空格
var str = " hello world ! ";
var str1 = str.replace(/\s/g, "");
console.log(str1); //输出结果:helloworld!
eg.jQuery字符串去首尾两端所有空格方法
var str =" hello world ";
console.log(str.trim()); //输出结果:hello world
四、substring() / substr():字符串截取
1、substring("起始位置","结束位置[不写时,从起始位置截取到最后]");
2、substr("起始位置","截取长度 [不写时,从起始位置截取到最后]");
var str = "helloworld";
var str1 = str.substring(3,5);
var str2 = str.substring(3);
var str3 = str.substr(3,3);
var str4 = str.substr(3);
console.log(str1); //输出结果:lo
console.log(str2); //输出结果:loworld
console.log(str3);//输出结果:low
console.log(str4);//输出结果:loworld
注:substring截取,不包含结束位置
五、slice():提取字符串的一部分
slice("起始位置","结束位置 [不写时,从起始位置截取到最后]");
var str = "helloworld";
var str1 = str.slice(1,3);
var str2 = str.slice(5);
console.log(str1); //输出结果:el
console.log(str2);//输出结果:world
注:1、与substring截取类似,不包含结束位置;
2、与substring截取不同,slice()结束位置为负时,代表反向位置(如:-1,代表字符串的倒数第一位);
六、toLowerCase() / toUpperCase():字符串大小写转换
var str = "helloWORLD";
var str1 = str.toLowerCase();
var str2 = str.toUpperCase();
console.log(str1); //输出结果:helloworld
console.log(str2); //输出结果:HELLOWORLD
七、concat():合并两个或多个字符串
var str = "hello";
var res1 = str.concat(" world ");
var res2 = str.concat(" world ","!");
console.log(res1); //输出结果:hello world
console.log(res2); //输出结果:hello world !
注:实际更常用简单的+(加号)
八、charAt():查找字符串中指定位置的字符
var str = "helloworld";
var str1 = str.charAt(5);
console.log(str1); //输出结果:w
九、split():按不同方式(正则),将一字符串分割成一个数组
split("字符串或正则","分割长度[不写时,匹配后每个字符串都被分割]");
var str = "hello world hahaha";
var str1 = str.split(" ");
var str2 = str.split(" ",2);
var str2 = str.split(" ",3);
console.log(str1); //输出结果:["hello", "world", "hahaha"]
console.log(str2); //输出结果:["hello", "world"]
console.log(str3); //输出结果:["hello", "world", "hahaha"]
十、match():判断某一字符串是否含有某一子串或匹配某一正则
var str = "hello world";
var str1 = str.match("hello");
var str2 = str.match("helo");
console.log(str1); //输出结果:hello
console.log(str2); //输出结果:null
注:与indexOF()、lastIndexOf()的不同之处,match()返回值为字符串,并常配合正则使用
十一、search():判断某一字符串是否含有某一子串或匹配某一正则
var str = "hello world";
var str1 = str.search("hello");
var str2 = str.search("helo");
console.log(str1); //输出结果:0
console.log(str2); //输出结果:-1
注:与match()的不同之处,返回值为字符串中第一次出现所包含子串或第一个匹配正则的子串的起始位置
网友评论