JavaScript 字符串方法

javascript 字符串方法

字符串方法帮助您处理字符串。

 

1. 字符串方法和属性

原始值,比如“bill gates”,无法拥有属性和方法(因为它们不是对象)。

但是通过 javascript,方法和属性也可用于原始值,因为在执行方法和属性时 javascript 将原始值视为对象。

 

2. 字符串长度

length 属性返回字符串的长度:

范例

var txt = "abcdefghijklmnopqrstuvwxyz";
var sln = txt.length;

 

3. 查找字符串中的字符串

indexof() 方法返回字符串中指定文本首次出现的索引(位置):

范例

var str = "the full name of china is the people's republic of china.";
var pos = str.indexof("china");

javascript 从零计算位置。

0 是字符串中的第一个位置,1 是第二个,2 是第三个 ...

lastindexof() 方法返回指定文本在字符串中最后一次出现的索引:

范例

var str = "the full name of china is the people's republic of china.";
var pos = str.lastindexof("china");

如果未找到文本, indexof()lastindexof() 均返回 -1。

范例

var str = "the full name of china is the people's republic of china.";
var pos = str.indexof("usa");

两种方法都接受作为检索起始位置的第二个参数。

范例

var str = "the full name of china is the people's republic of china.";
var pos = str.indexof("china", 18);

lastindexof() 方法向后进行检索(从尾到头),这意味着:假如第二个参数是 50,则从位置 50 开始检索,直到字符串的起点。

范例

var str = "the full name of china is the people's republic of china.";
var pos = str.lastindexof("china", 50);

 

4. 检索字符串中的字符串

search() 方法搜索特定值的字符串,并返回匹配的位置:

范例

var str = "the full name of china is the people's republic of china.";
var pos = str.search("locate");

 

5. 您注意到了吗?

两种方法,indexof()search(),是相等的。

这两种方法是不相等的。区别在于:

  • search() 方法无法设置第二个开始位置参数。
  • indexof() 方法无法设置更强大的搜索值(正则表达式)。

 

6.提取部分字符串

有三种提取部分字符串的方法:

  • slice(start, end)
  • substring(start, end)
  • substr(start, length)

 

7. slice() 方法

slice() 提取字符串的某个部分并在新字符串中返回被提取的部分。

该方法设置两个参数:起始索引(开始位置),终止索引(结束位置)。

这个例子裁剪字符串中位置 7 到位置 13 的片段:

范例

var str = "apple, banana, mango";
var res = str.slice(7,13);

res 的结果是:

banana

如果某个参数为负,则从字符串的结尾开始计数。

这个例子裁剪字符串中位置 -12 到位置 -6 的片段:

范例

var str = "apple, banana, mango";
var res = str.slice(-13,-7);

res 的结果是:

banana

如果省略第二个参数,则该方法将裁剪字符串的剩余部分:

范例

var res = str.slice(7);

或者从结尾计数:

范例

var res = str.slice(-13);

提示:负值位置不适用 internet explorer 8 及其更早版本。

 

8. substring() 方法

substring() 类似于 slice()

不同之处在于 substring() 无法接受负的索引。

范例

var str = "apple, banana, mango";
var res = str.substring(7,13);

res 的结果是:

banana

如果省略第二个参数,则该 substring() 将裁剪字符串的剩余部分。

 

9. substr() 方法

substr() 类似于 slice()

不同之处在于第二个参数规定被提取部分的长度。

范例

var str = "apple, banana, mango";
var res = str.substr(7,6);

res 的结果是:

banana

如果省略第二个参数,则该 substr() 将裁剪字符串的剩余部分。

范例

var str = "apple, banana, mango";
var res = str.substr(7);

res 的结果是:

banana, mango

如果首个参数为负,则从字符串的结尾计算位置。

范例

var str = "apple, banana, mango";
var res = str.substr(-5);

res 的结果是:

mango

第二个参数不能为负,因为它定义的是长度。

 

10. 替换字符串内容

replace() 方法用另一个值替换在字符串中指定的值:

范例

str = "please visit microsoft!";
var n = str.replace("microsoft", "yapf");

replace() 方法不会改变调用它的字符串。它返回的是新字符串。

默认地,replace() 只替换首个匹配:

范例

str = "please visit microsoft and microsoft!";
var n = str.replace("microsoft", "yapf");

默认地,replace() 对大小写敏感。因此不对匹配 microsoft:

范例

str = "please visit microsoft!";
var n = str.replace("microsoft", "yapf");

如需执行大小写不敏感的替换,请使用正则表达式 /i(大小写不敏感):

范例

str = "please visit microsoft!";
var n = str.replace(/microsoft/i, "yapf");

请注意正则表达式不带引号。

如需替换所有匹配,请使用正则表达式的 g 标志(用于全局搜索):

范例

str = "please visit microsoft and microsoft!";
var n = str.replace(/microsoft/g, "yapf");

 

11. 转换为大写和小写

通过 touppercase() 把字符串转换为大写:

范例

var text1 = "hello world!";       // 字符串 var text2 = text1.touppercase();  // text2 是被转换为大写的 text1 

通过 tolowercase() 把字符串转换为小写:

范例

var text1 = "hello world!";       // 字符串 var text2 = text1.tolowercase();  // text2 是被转换为小写的 text1 

 

12. concat() 方法

concat() 连接两个或多个字符串:

范例

var text1 = "hello";
var text2 = "world";
text3 = text1.concat(" ",text2);

concat() 方法可用于代替加运算符。下面两行是等效的:

范例

var text = "hello" + " " + "world!";
var text = "hello".concat(" ","world!");

所有字符串方法都会返回新字符串。它们不会修改原始字符串。

正式地说:字符串是不可变的:字符串不能更改,只能替换。

 

13. string.trim()

trim() 方法删除字符串两端的空白符:

范例

var str = "       hello world!        ";
alert(str.trim());

警告:internet explorer 8 或更低版本不支持 trim() 方法。

如需支持 ie 8,您可搭配正则表达式使用 replace() 方法代替:

范例

var str = "       hello world!        ";
alert(str.replace(/^[\s\ufeff\xa0]+|[\s\ufeff\xa0]+$/g, ''));

您还可以使用上面的 replace 方案把 trim 函数添加到 javascript string.prototype:

范例

if (!string.prototype.trim) {
  string.prototype.trim = function () {
    return this.replace(/^[\s\ufeff\xa0]+|[\s\ufeff\xa0]+$/g, '');
};
var str = "       hello world!        ";
alert(str.trim());

 

14. 提取字符串字符

这是两个提取字符串字符的安全方法:

  • charat(position)
  • charcodeat(position)

 

15. charat() 方法

charat() 方法返回字符串中指定下标(位置)的字符串:

范例

var str = "hello world";
str.charat(0);            // 返回 h 

 

16.charcodeat() 方法

charcodeat() 方法返回字符串中指定索引的字符 unicode 编码:

范例

var str = "hello world";

str.charcodeat(0);         // 返回 72 

 

17. 属性访问(property access)

ecmascript 5 (2009) 允许对字符串的属性访问 [ ]:

范例

var str = "hello world";
str[0];                   // 返回 h

使用属性访问有点不太靠谱:

  • 不适用 internet explorer 7 或更早的版本
  • 它让字符串看起来像是数组(其实并不是)
  • 如果找不到字符,[ ] 返回 undefined,而 charat() 返回空字符串。
  • 它是只读的。str[0] = "a" 不会产生错误(但也不会工作!)

范例

var str = "hello world";
str[0] = "a";             // 不产生错误,但不会工作
str[0];                   // 返回 h

提示:如果您希望按照数组的方式处理字符串,可以先把它转换为数组。

 

18. 把字符串转换为数组

可以通过 split() 将字符串转换为数组:

范例

var txt = "a,b,c,d,e";   // 字符串 txt.split(",");          // 用逗号分隔 txt.split(" ");          // 用空格分隔 txt.split("|");          // 用竖线分隔 

如果省略分隔符,被返回的数组将包含 index [0] 中的整个字符串。

如果分隔符是 "",被返回的数组将是间隔单个字符的数组:

范例

var txt = "hello";       // 字符串 txt.split("");           // 分隔为字符 

下一节:js 数字

js 教程

相关文章