Skip to main content

字符串

字符串用于存储和操作文本。

特殊字符转义

由于字符串必须由引号包围,JavaScript 会误解这段字符串:

var y = "中国是瓷器的故乡,因此 china 与"China(中国)"同名。"

该字符串将被切为 "中国是瓷器的故乡,因此 china 与"。
避免此问题的解决方法是,使用 \ 转义字符。
反斜杠转义字符把特殊字符转换为字符串字符:

var x = "中国是瓷器的故乡,因此 china 与\"China(中国)\"同名。"

还有一些特殊的转义:

代码结果
\b退格键
\f换页
\n新行
\r回车
\t水平制表符
\v垂直制表符

这六个转义字符最初设计用于控制打字机、电传打字机和传真机。它们在 HTML 中没有任何意义。

字符串方法

字符串长度

字符串的内建属性 length 可以返回字符串的长度:

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

查找字符串里面的字符串

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

var str = "The full name of China is the People's Republic of China.";
var pos = str.indexOf("China");

上面的代码将返回值 17

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

var str = "The full name of China is the People's Republic of China.";
var pos = str.lastIndexOf("China");

上面的代码将返回值 51

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

var str = "The full name of China is the People's Republic of China.";
var pos = str.indexOf("USA");

以上的代码将返回 -1

两种方法都接受作为检索起始位置的第二个参数。也就是说,如果指定了这个参数,那么就会从这个指定位置开始搜索。

var str = "The full name of China is the People's Republic of China.";
var pos = str.indexOf("China", 18);

检索字符串中的字符串

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

var str = "The full name of China is the People's Republic of China.";
var pos = str.search("China");

以上的代码将返回值 17

注意

两种方法,indexOf() 与 search(),是相等的。
这两种方法是不相等的。区别在于:

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

提取部分字符串

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

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

slice

slice() 提取字符串的某个部分并在新字符串中返回被提取的部分。
该方法设置两个参数:起始索引(开始位置)终止索引(结束位置)
这个例子裁剪字符串中位置 7 到位置 13 的片段:

var str = "Apple, Banana, Mango";
var res = str.slice(7,13);

上面的代码将返回的结果是:Banana

如果某个参数为负,则从字符串的结尾开始计数。
这个例子裁剪字符串中位置 -12 到位置 -6 的片段:

var str = "Apple, Banana, Mango";
var res = str.slice(-13,-7);

上面的代码将返回的结果是:Banana

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

var res = str.slice(7);

这段代码将返回:Banana, Mango

substring

substring() 类似于 slice() ,但是无法接受负的索引。

var str = "Apple, Banana, Mango";
var res = str.substring(7,13);

substr

substr() 类似于 slice()。不同之处在于第二个参数规定被提取部分的长度

var str = "Apple, Banana, Mango";
var res = str.substr(7,6);

上面的代码的意思是从第七个开始,提取 6 位。

substr 方法也可以接收负数参数。

String.match()

match() 方法根据正则表达式在字符串中搜索匹配项,并将匹配项作为 Array 对象返回。

let text = "The rain in SPAIN stays mainly in the plain";
text.match(/ain/g) // 返回数组 [ain,ain,ain]

在上面的代码中,text 中找到了三个 ain ,因此返回 : 返回数组 [ain,ain,ain]

不区分大小写:

let text = "The rain in SPAIN stays mainly in the plain";
text.match(/ain/gi) // 返回数组 [ain,AIN,ain,ain]

String.includes()

如果字符串包含指定值,includes() 方法返回 true。

let text = "Hello world, welcome to the universe.";
text.includes("world") // 返回 true

string.includes(searchvalue, start)

searchvalue | 必需。需要搜索的字符串。
start | 可选。默认为 0. 开始搜索的位置。

检查字符串是否包含 "world",从位置 12 开始搜索:

let text = "Hello world, welcome to the universe.";
text.includes("world", 12) // 返回 false

String.startsWith()

如果字符串以指定值开头,则 startsWith() 方法返回 true,否则返回 false:

let text = "Hello world, welcome to the universe.";
text.startsWith("Hello") // 返回 true
<!DOCTYPE html>
<html>
<body>

<h2>JavaScript 字符串</h2>

<p>检查字符串是否以 "Hello" 开头:</p>

<p id="demo"></p>

<p>Internet Explorer 不支持 startsWith() 方法。</p>

<script>
let text = "Hello world, welcome to the universe.";
document.getElementById("demo").innerHTML = text.startsWith("Hello");
</script>

</body>
</html>

上面的结果将返回:true

let text = "Hello world, welcome to the universe.";
text.startsWith("world", 5) // 返回 false
let text = "Hello world, welcome to the universe.";
text.startsWith("world", 6) // 返回 true

String.endsWith()

如果字符串以指定值结尾,则 endsWith() 方法返回 true,否则返回 false:
检查字符串是否以 "Gates" 结尾:

var text = "Bill Gates";
text.endsWith("Gates") // 返回 true

检索以 "world" 结尾的字符串的前 11 个字符:

let text = "Hello world, welcome to the universe.";
text.endsWith("world", 11) // 返回 true

字符串替换

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

str = "Please visit Microsoft!";
var n = str.replace("Microsoft", "Jetzihan");

执行上面代码后,str 的结果是 Please visit Jetzihan!

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

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

str = "Please visit Microsoft and Microsoft!";
var n = str.replace("Microsoft", "Jetzihan");

执行上面代码后,str 的结果是 Please visit Jetzihan and Microsoft!

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

str = "Please visit Microsoft!";
var n = str.replace("MICROSOFT", "Jetzihan");

RES: Please visit Microsoft!

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

str = "Please visit Microsoft!";
var n = str.replace(/MICROSOFT/i, "Jetzihan");

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

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

str = "Please visit Microsoft and Microsoft!";
var n = str.replace(/Microsoft/g, "W3School");

转换为大写和小写

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

var text1 = "Hello World!";       // 字符串
var text2 = text1.toUpperCase(); // text2 是被转换为大写的 text1

RES:HELLO WORLD!.

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

var text1 = "Hello World!";       // 字符串
var text2 = text1.toLowerCase(); // text2 是被转换为小写的 text1

RES:hello world!.

链接多个字符串

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

var text1 = "Hello";
var text2 = "World";
text3 = text1.concat(" ",text2);

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

var text = "Hello" + " " + "World!";
var text = "Hello".concat(" ","World!");

删除两端空白符

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

var str = "       Hello World!        ";
alert(str.trim());

提取字符串的字符

  • charAt() 方法 charAt() 方法返回字符串中指定下标(位置)的字符串:
var str = "HELLO WORLD";
str.charAt(0); // 返回 H
  • charCodeAt() 方法 charCodeAt() 方法返回字符串中指定索引的字符 unicode 编码:
var str = "HELLO WORLD";
str.charCodeAt(0); // 返回 72
  • 属性访问
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

字符串转数组

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

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

在上面的例子中应该要用 , 分割。

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

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

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