字符方法
charAt(index) 用于返回指定位置的字符,index从0开始计算
var stringValue = "hello world";
console.log(stringValue.charAt(1)); // e
charCodeAt(index)用于返回指定字符的ASCLL值(字符编码值)
var stringValue = "hello world";
console.log(stringValue.charCodeAt(1)); // 101
[index] ECMAScript5中定义了另一个访问个别字符的方法。在支持此方法的浏览器中,可以使用方括号加数字索引来访问字符串中的特定字符。(IE8、Firefox、Chrom、Opera支持)
var stringValue = "hello world";
console.log(stringValue[1]); // e
字符串操作方法
concat(element1,element2...elementx) 用于拼接两个或多个字符串
var stringValue = "hello ";
var result = stringValue.concat('world');
console.log(result) //"hello world";
console.log(stringValue) //"hello";
var stringValue = "hello ";
var result = stringValue.concat('world','!');
console.log(result) //"hello world!";
console.log(stringValue) //"hello";
三个基于子字符串创建新字符串的方法
slice(start,end)用于截取start,end指定区间内的字符串并返回
- 此方法不会操作原字符串对象数据,而是创建字符串副本保存截取后的字符串数据
- 如果end未指定,则表示直接从start直到数组末尾,
- 如果start或end为负数,将传入的负值与字符串长度相加
var stringValue = "hello world";
console.log(stringValue.slice(3)); //"lo world"
console.log(stringValue.slice(3,7)); // "lo w"
console.log(stringValue.slice(-3)); // "rld"
console.log(stringValue.slice(3,-4)); // "lo w"
substr(start,length)用于字符串截取,方法接收两个参数
- 此方法不会操作原字符串对象数据,而是创建字符串副本保存截取后的字符串数据
- 第一个参数start,表示从start索引位置开始截取,索引从0开始计算,如果此参数值是负数,则会从字符串结尾开始计算,比如-1表示最后一个字符,-2表示倒数第二个字符,以此类推(也可以将传入的负值与字符串长度相加)。
- 第二个参数length,表示截取的字符串长度,此参数为可选,如不指定此参数,则默认会一直截取到字符串结尾。如参数为负数,则将参数转换为0。
var stringValue = "hello world";
console.log(stringValue.substr(3)); //"lo world"
console.log(stringValue.substr(3,7)); // "lo worl"
console.log(stringValue.substr(-3)); // "rld"
console.log(stringValue.substr(3,-4)); // ""
substring(start,end)用于截取start与end索引区间内的字符串,区间范围为[start,end],前闭后开
- 注意:参数start和end必须为非负整数,
- 如start为负数,则默认会将start赋值为0,
- 如end为负数,则默认会将end赋值为0,且截取区间改为[0,start),
- 如果start大于end,那么会首先交换两个参数值的位置,即区间改为[end,start)
var stringValue = "hello world";
console.log(stringValue.substring(3)); //"lo world"
console.log(stringValue.substring(3,7)); // "lo w"
console.log(stringValue.substring(-3)); // "rld"
console.log(stringValue.substring(3,-4)); // "hel"
字符串位置方法
indexOf(searchvalue,fromindex)用于返回指定字符在字符串中第一次出现的索引,从第一个字符开始查找,找到立即返回。如果没有找到该字符串,则返回-1
searchvalue 必需。规定需检索的字符串值。
fromindex可选的整数参数。规定在字符串中开始检索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略该参数,则将从字符串的最后一个字符处开始检索。
var stringValue = "hello world";
console.log(stringValue.indexOf('O')); //4
console.log(stringValue.indexOf('O',6)); //7
lastIndexOf(searchvalue,fromindex) 方法可返回一个指定的字符串值最后出现的位置,在一个字符串中的指定位置从后向前搜索。
searchvalue 必需。规定需检索的字符串值。
fromindex可选的整数参数。规定在字符串中开始检索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略该参数,则将从字符串的最后一个字符处开始检索。
var stringValue = "hello world";
console.log(stringValue.lastIndexOf('O')); //7
console.log(stringValue.indexOf('O',6)); //4
trim()方法
trim()方法创建一个字符串的副本,删除前置及后缀的所有空格,然后返回结果。
(支持这个方法的浏览器有IE9+、Firefox3.5+、Safari5+、Opera10.5+ 和Chrome)
var stringValue = " hello world ";
var trimmedStringValue = stringValue.trim();
console.log(stringValue); //" hello world "
console.log(trimmedStringValue); //"hello world"
字符串大小写转换方法
toLowerCase()把字符串转换成小写
var stringValue = "HELLO WORLD";
console.log(stringValue.toLowerCase()); //hello world
toUpperCase()把字符串转换成大写
var stringValue = "hello world";
console.log(stringValue.toUpperCase()); //HELLO WORLD
toLocalLowerCase() 把字符串转换成小写,针对特定地区的实现
var stringValue = "HELLO WORLD";
console.log(stringValue.toLocalLowerCase()); //hello world
toLocalUpperCase() 把字符串转换成大写,针对特定地区的实现
var stringValue = "HELLO WORLD";
console.log(stringValue.toLocalUpperCase()); //hello world
字符串的模式匹配方法
match()用于检索与指定正则匹配的子串,如果开启了全局检索模式,且有多个符合条件的子串,那么返回的是一个数组。
var text = "cat,bat,sat,fat";
var pattern = /.at/;
var matches = text.match(pattern);
console.log(matches.index); //0
console.log(matches[0]); //"cat"
console.log(pattern.lastIndex);//0
search()用于返回指定子串或符合指定正则表达式的子串在原字符串中第一次出现的索引,如果没有找到,则返回-1
var text = "cat,bat,sat,fat";
var pos = text.search(/at/);
console.log(pos); //1
replace()用于字符串替换操作,接收两个参数。
- 第一个参数:表示待替换的字符串,或者是替换的正则表达式
- 第二个参数:替换文本,也可以是一个function的返回值
- 注意此方法不会改变原字符串对象,而是返回新字符串对象
var text = "cat,bat,sat,fat";
var result = text.replace("at","ond");
console.log(result); //"cond,bond,sond,fond"
result = text.replace(/at/g,"ond");
console.log(result); //"cond,bond,sond,fond"
split() 以指定的分割字符或正则表达式的匹配字符来分割原字符串,返回结果以数组形式表示。此方法还可以接收第二个参数,第二个参数可以限制最终返回的数组元素最大个数。
var colorText = "red,blue,green,yellow";
var color1 = colorText.split(",");//["red","blue","green","yellow"]
var color2 = colorText.split(",",2);//["red","blue"]
var color3 = colorText.split(/^\,]+/); //["","","",""]
localeCompare() 方法
localeCompare()比较两个字符串,返回下列值中的一个
- 如果字符串在字母表中应该排在字符串参数之前,则返回一个负数(大多数情况下是-1,具体的值要视实现而定);
- 如果字符串等于字符串参数,则返回
- 如果字符串在字母表中应该排在字符串参数之后,则返回一个正数(大多数情况下是1,具体的值要视实现而);
var stringValue = "yellow";
console.log(stringValue.localeCompare("brick")); //1
console.log(stringValue.localeCompare("yellow")); //0
console.log(stringValue.localeCompare("zoo")); //-1
fromCharCode() 方法
fromCharCode()接收一个或多个字符编码,然后将他们转换成一个字符串,该方法与实例方法charCodeAt()执行的是相反的操作。
console.log(String.fromCharCode(104,101,108,108,111)); //"hello"