其他分享
首页 > 其他分享> > ES6系列--【ES6 新增字符串方法】

ES6系列--【ES6 新增字符串方法】

作者:互联网

es6 新增字符串方法

es6新增了4个字符串处理的方法:startsWith,endsWith,includes,repeat。

1、简单使用

复制代码
 let str="lxy";
        //字符串是否以某个字符开头
        console.log(str.startsWith('l'));//true
        console.log(str.startsWith('x'));//false
        //字符串是否以某个字符结尾
        console.log(str.endsWith('x'));//false
        console.log(str.endsWith('y'));//true
        //字符串是否包含某个字符
        console.log(str.includes('x'));//true
        console.log(str.includes('z'));//false
        //repeat()重复某个字符串几次
        console.log(str.repeat(3));//lxylxylxy
        console.log(str.repeat(5));//lxylxylxylxylxy
复制代码

2、第2个参数

includes(),startsWith(),endsWith()都支持第2个参数。

使用第2个参数n时,endsWith的行为与其他两个方法有所不同。

var s="hello world!";
s.startsWith('world',6);//true
s.endsWith('hello',5);//true
s.includes('hello',6);//false

标签:ES6,console,log,startsWith,--,endsWith,str,字符串
来源: https://www.cnblogs.com/chenhaiyun/p/14881378.html