美文网首页
字符串扩展

字符串扩展

作者: 陶六六 | 来源:发表于2018-08-19 22:37 被阅读0次

    字符串扩展

    1. unicode支持
      • \u{unicode码点} 表示unicode字符
      • codePointAt() 字符码点
      • String.fromCodePoint() 码点转字符
      • 字符串iterator接口
      • normalize() 多种表示法字符串相等
    2. 字符串方法
      • includes(substr,n) 从序数n开始 默认0
      • startsWith(substr,n) 从序数n开始 默认0
      • endsWith(substr,n) 前n个字符 默认s.length
      • repeat(n) 字符串n次重复
      • padStart(str,length) 小于length用给定str前补,否则原串返回 默认空格补参
      • padEnd(str,length) 小于length用给定str后补,否则原串返回 默认空格补参
    3. 模版字符串
      • 函数调用
            tag`hello ${5} world ${true}`
            tag(['helle ',' world ',''],5,true)
        
      • String.raw({raw:'abc'},1,2) a1b2c

    相关文章

      网友评论

          本文标题:字符串扩展

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