ES6 字符串新增方法

String.fromCodePoint()

String.fromCharCode(0x20BB7) //ஷ ---不能识别大于0xFFFF的码点
String.fromCodePoint(0x20BB7) // ---定义在String对象上

String.raw()

返回一个斜杠都被转义的字符串
String.raw`Hi\n${2+3}!` // "Hi\n5!"

如果原字符串的斜杠已经转义,那么String.raw()会进行再次转义。
String.raw`Hi\n` // "Hi\\\\n"

codePointAt()

测试一个字符由两个字节还是由四个字节组成的最简单方法

normalize()

includes(),startWith(),endsWith()

let s = 'Hello world!';
includes():是否找到参数字符串 s.includes('o',6) // true
startsWith():参数字符串是否在原字符串的头部 s.startsWith('Hello',5) // false
endsWith():参数字符串是否在原字符串的尾部 s.endsWith('!',6) // false
endWith针对的是前n个字符,其他两个是从第n个开始到结束

repeat()

将字符串重复多次 'a'.repeat(2.9) // "aa"
-1到0之间的小数,NaN,字符串都会返回""

trimStart(),trimEnd()

消除头部空格,消除尾部空格

replaceAll()

可以一次性替换所有匹配。'aabbcc'.replaceAll('b', '_') //'aa__cc'

你可能感兴趣的:(ES6 字符串新增方法)