美文网首页ES6
ES6-String新增的10个方法

ES6-String新增的10个方法

作者: 果汁凉茶丶 | 来源:发表于2022-05-02 18:43 被阅读0次

ES6-String 新增的10个方法:

  • includes()
  • startsWith(): 第二个参数表述起始位置
  • endsWith():第二个参数表示在前n个字符子串中查找
  • repeat()
  • padStart()
  • padEnd()
  • replaceAll(): 第二个参数支持函数
  • trimStart()/trimLeft()
  • trimEnd/trimRight()
  • at():支持负数参数

详解如下:

        /**
         * @func 字符的Unicode表示法
         * @desc ES6允许采用\uxxxx形式表示一个字符,xxxx表示码点
         * @desc 只限于码点在\u0000~\uFFFF之间的字符,超出的如五位的请使用{}括起来
         */
        let strUnicode = '\u5F20\u82B3\u5E05'
        console.log(strUnicode) // 张芳帅

        /**
         * @func 字符串具备Iterate接口,可以使用for...of循环
         */
        for (let char of 'fob') {
            console.log(char) // f, o ,o
        }

        /**
         * @func 模版字符串。使用反引号标识。
         * @desc 可用作普通字符串,换行字符串,嵌入变量字符串
         * @desc 换行字符串所有的空格和换行符都将被保留。常用作input-placeholder里的多行描述。
         */
        let moduleStr = `我是第一行
我是第二行`
        console.log(moduleStr)

        

        /**
         * @func ES6新增String操作的实例方法。
         * @desc includes(): 返回是否找到该参数。支持第二个参数,表示检索开始位置
         * @desc startsWith(): 返回指定字符串是否在原字符串头部。支持第二个参数,表示前N个字符
         * @desc endsWith(): 返回指定字符串是否在怒原字符出岸尾部。支持第二个参数,表示检索开始位置
         */ 
        let s = 'hello world'
        s.startsWith('hel')  // true
        s.endsWith('ld') // true
        s.includes('o wo')  // true

        s.startsWith('llo', 2)  // true
        s.endsWith('llo', 5)  // true   前五个字符中以llo结尾



        /**
         * @func repeat(n)
         * @desc 将原数组重复n次。返回新值,不改变自身
         * @desc n传入正整数。传入小数直接被舍去取整,传入负数或infinity报错。注,-1~0的小数不报错,当作0处理
         */
        let demoStr = 'ou'
        demoStr.repeat(3)  // 'ououou'
        console.log(demoStr) // ‘ou’


        /**
         * @func 自动补全 - 不改变原字符串
         * @func padStart() 从前面自动补全
         * @func padEnd() 从后面自动补全
         * @params {Number} n 补全后的长度
         * @params {String} str 补全的字符或字符串。省略时默认使用空格补全。
         * @desc 补全字符超出指定补全位时,超出部分会被截取丢弃
         */
        let padStr = 'string'
        padStr.padStart(10, 'x') // 'xxxxstring'
        padStr.padEnd(10, 'y') // stringyyyy
        // 常用做指定格式提示
        '12'.padStart(10, 'YYYY-MM-DD') // YYYY-MM-12
        '09-12'.padStart(10, 'YYYY-MM-DD') // YYYY-09-12



        /**
         * @func 删除空白字符 - 不改变原字符串
         * @func trimStart() 同 trimLeft(): 消除字符串头部空格。
         * @func trimEnd() 同 trimRight(): 消除字符串尾部空格
         * @func trim() -ES5,前后都删除
         * @desc 除了空格,换行符和tab符也有效
         */
        let trimStr = '  abc  '
        trimStr.trimStart() // 'abc  '
        trimStr.trimEnd() // '  abc'


        /**
         * @func 匹配替换 - 不改变原字符串
         * @func replaceAll()  替换所有的匹配
         * @func replace() -ES5,仅匹配第一个,需要全替换需正则支持
         * @desc replaceAll() 第二个参数可以接受一个函数
         */
        let replaceStr = 'aabbcc'
        let rep = replaceStr.replace('b', '_') // 'aa_bcc'
        let repReg = replaceStr.replace(/b/g, '_') // 'aa__cc'
        let repAll = replaceStr.replaceAll('b', '_') // 'aa__cc'
        let repAllFn = replaceStr.replaceAll('b', () => '_') // 'aa__cc'


        /**
         * @func 索引取值at()
         * @desc 参数为正整数指从前往后查找,参数为负指从后往前查找
         */
        let atStr = 'handsome'
        atStr.at(2) // n
        atStr.at(-2) // m

相关文章

网友评论

    本文标题:ES6-String新增的10个方法

    本文链接:https://www.haomeiwen.com/subject/upjvyrtx.html