charAt()
-可以返回字符串中指定位置的字符
根据索引获取指定的字符
var str ="hello word";
console.log(str.charAt(0));
charCodeAt()
-获取指定位置字符的字符编码(Unicode编补)
console.log(str.charCodeAt(0));
String.formCharcode()
-可以根据字符编码去获取字符
console.log(String.fromCharCode(65));
concat()
-可以用来连接两个或多个字符串
-作用和+ 一样
console.log(str.concat("111","2222"));
indexof()
-该方法可以检索一个字符串中是否含有指定内容
-如果字符串中含有该内容,则会返回其第一次出现的索引
如果没有找到指定的内容,则返回-1 r
-可以指定一个第二个参数,指定开始查找的位置
console.log(str.indexOf(h));
console.log(str.indexOf("l",2));
lastIndexof();
-该方法的用法和indexOf()一样,
不同的是indexOf是从前往后找,
而lastIndexOf是从后往前找
-也可以指定开始查找的位置
console.log(str.lastIndexOf("h"));
console.log(str.lastIndexOf("l",3));
slice()
-可以从字符串中截取指定的内容
-不会影响原字符串,而是将截取到内容返回-参数:
第一个,开始位置的索引(包括开始位置)
第二个,结束位置的索引(不包括结束位置)
如果省略第二个参数,则会截取到后边所有的
也可以传递一个负数作为参数,负数的话将会从后边计算
console.log(str.slice(1,4));
console.log(str.slice(1,-1));
substring()
-可以用来截取一个字符串,可或slice()类似
-参数:
-第一个:开始截取位置的索引(包括开始位置)
-第二个:结束位置的索引(不包括结束位置)
-不同的是这个方法不能接受负值作为参数,
如果传递了一个负值,则默认使用日
-而且他还自动调整参数的位置,如果第二个参数小于第一个,则自动交换
console.log(str.substring(1,0));
substr()
-用来截取字符串工
-参数:
1.截取开始位置的索引
2.截取的长度
console.log(str.substr(3,2));
split()
-可以将一个字符串拆分为一个数组
-参数:
-需要一个字符串作为参数,将会根据该字符串去拆分数组
var stu=“123,456,789”;
var arr=stu.split(",");
var art=stu.split("");//会将每个字符单独分出来
console.log(arr);
console.log(art);
toUpperCase()
-将一个字符串转换为大写并返回
console.log(str.toUpperCase());
toLowerCase()
-将一个字符串转换为小写并返回
console.log(str.toLowerCase());