新的字符串方法
> 'hello'.startsWith('hell')
true
> 'hello'.endsWith('ello')
true
> 'hello'.includes('ell')
true
> 'doo '.repeat(3)
'doo doo doo '
ES6 有一种新的字符串字面量,称为模板字面量
// String interpolation via template literals (in backticks)
const first = 'Jane';
const last = 'Doe';
console.log(`Hello ${first} ${last}!`);
// Hello Jane Doe!
// Template literals also let you create strings with multiple lines
const multiLine = `
This is
a string
with multiple
lines`;
在 ECMAScript 6 中,有一种新的 Unicode 转义方式,允许您指定任何代码点(即使是超过 16 位的代码点)
console.log('\u{1F680}'); // ES6: single code point
console.log('\uD83D\uDE80'); // ES5: two code units
有关转义的更多信息,请参阅Unicode 章节。
模板字面量在其章节中有详细描述。它们提供了三个有趣的功能。
首先,模板字面量支持字符串插值
const first = 'Jane';
const last = 'Doe';
console.log(`Hello ${first} ${last}!`);
// Hello Jane Doe!
其次,模板字面量可以包含多行
const multiLine = `
This is
a string
with multiple
lines`;
第三,如果在模板字面量前面加上标签 String.raw,则它们是“原始的”——反斜杠不是特殊字符,并且不会解释 \n 等转义字符
const str = String.raw`Not a newline: \n`;
console.log(str === 'Not a newline: \\n'); // true
字符串是可迭代的,这意味着您可以使用 for-of 迭代它们的字符
for (const ch of 'abc') {
console.log(ch);
}
// Output:
// a
// b
// c
您可以使用展开运算符 (...) 将字符串转换为数组
const chars = [...'abc'];
// ['a', 'b', 'c']
字符串迭代器沿着代码点边界分割字符串,这意味着它返回的字符串包含一个或两个 JavaScript 字符
for (const ch of 'x\uD83D\uDE80y') {
console.log(ch.length);
}
// Output:
// 1
// 2
// 1
迭代为您提供了一种快速统计字符串中 Unicode 代码点数量的方法
> [...'x\uD83D\uDE80y'].length
3
迭代还有助于反转包含非 BMP 代码点(大于 16 位并编码为两个 JavaScript 字符)的字符串
const str = 'x\uD83D\uDE80y';
// ES5: \uD83D\uDE80 are (incorrectly) reversed
console.log(str.split('').reverse().join(''));
// 'y\uDE80\uD83Dx'
// ES6: order of \uD83D\uDE80 is preserved
console.log([...str].reverse().join(''));
// 'y\uD83D\uDE80x'
新方法 codePointAt() 返回字符串中给定索引处代码点的数值
const str = 'x\uD83D\uDE80y';
console.log(str.codePointAt(0).toString(16)); // 78
console.log(str.codePointAt(1).toString(16)); // 1f680
console.log(str.codePointAt(3).toString(16)); // 79
当与字符串迭代结合使用时,此方法效果很好
for (const ch of 'x\uD83D\uDE80y') {
console.log(ch.codePointAt(0).toString(16));
}
// Output:
// 78
// 1f680
// 79
codePointAt() 的反义词是 String.fromCodePoint()
> String.fromCodePoint(0x78, 0x1f680, 0x79) === 'x\uD83D\uDE80y'
true
三种新方法检查一个字符串是否存在于另一个字符串中
> 'hello'.startsWith('hell')
true
> 'hello'.endsWith('ello')
true
> 'hello'.includes('ell')
true
这些方法中的每一个方法都有一个可选的第二个参数,用于指定要搜索的字符串的开始或结束位置
> 'hello'.startsWith('ello', 1)
true
> 'hello'.endsWith('hell', 4)
true
> 'hello'.includes('ell', 1)
true
> 'hello'.includes('ell', 2)
false
repeat() 方法重复字符串
> 'doo '.repeat(3)
'doo doo doo '
在 ES6 中,接受正则表达式参数的四种字符串方法做的事情相对较少。它们主要调用其参数的方法
String.prototype.match(regexp) 调用regexp[Symbol.match](this).String.prototype.replace(searchValue, replaceValue) 调用searchValue[Symbol.replace](this, replaceValue).String.prototype.search(regexp) 调用regexp[Symbol.search](this).String.prototype.split(separator, limit) 调用separator[Symbol.split](this, limit).参数不再必须是正则表达式。任何具有适当方法的对象都可以。
标记模板
String.raw(callSite, ...substitutions) : string > String.raw`\n` === '\\n'
true
有关更多信息,请参阅模板字面量章节。
Unicode 和代码点
String.fromCodePoint(...codePoints : number[]) : stringString.prototype.codePointAt(pos) : numberpos 开始的代码点的编号(包含一个或两个 JavaScript 字符)。String.prototype.normalize(form? : string) : string'NFC' 形式。查找字符串
String.prototype.startsWith(searchString, position=0) : booleansearchString 开头?position 允许您指定要检查的字符串的开始位置。String.prototype.endsWith(searchString, endPosition=searchString.length) : booleansearchString 结尾?endPosition 允许您指定要检查的字符串的结束位置。String.prototype.includes(searchString, position=0) : booleansearchString?position 允许您指定要搜索的字符串的开始位置。重复字符串
String.prototype.repeat(count) : stringcount 次。