zoukankan      html  css  js  c++  java
  • es6 新增字符串方法

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

    1、简单使用

    • includes()返回布尔值,表示是否找到了参数字符串
    • startsWith()返回布尔值,表示参数字符串是否在源字符串的头部
    • endsWith()返回布尔值,表示参数字符串是否在源字符串的尾部
     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个参数[update20170606]

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

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

    • endsWith针对前n个字符
    • 其他2个方法:针对从第n个位置直到字符串结束的字符。
    var s="hello world!";
    s.startsWith('world',6);//true
    s.endsWith('hello',5);//true
    s.includes('hello',6);//false

    本文作者starof,因知识本身在变化,作者也在不断学习成长,文章内容也不定时更新,为避免误导读者,方便追根溯源,请诸位转载注明出处:http://www.cnblogs.com/starof/p/6919733.html有问题欢迎与我讨论,共同进步。 

  • 相关阅读:
    nodejs 获取客户端 ip 地址
    如何使用 nvm-windows 管理 nodejs 版本
    redis 环境搭建
    利用 ssh 传输文件
    如何在 Centos7 中安装 gcc
    如何在 Centos7 中安装 nginx
    django迁移model到别的app中
    ssl生成证书
    pip安装mysql报错 ld: library not found for -lssl
    mac重置蓝牙模块
  • 原文地址:https://www.cnblogs.com/starof/p/6919733.html
Copyright © 2011-2022 走看看