• 学习正则表达式


    1、创建正则表达式

    1.两种创建方式
    var box = new RegExp('box'); //第一个参数字符串
    var box = new RegExp('box', 'ig'); //第二个参数可选模式修饰符
    
    var box = /box/;     //直接用两个反斜杠
    var box = /box/ig; //在第二个斜杠后面加上模式修饰符
    //可选修饰符:
    i 表示忽略大小写;
    g 表示全局匹配
    m 表示多行匹配

    2.RegExp对象的方法

    test 方法,在字符串中测试模式匹配,返回true 或false;

    exec 方法,在字符串中执行匹配搜索,返回结果数组,不匹配返回null

    var pattern = new RegExp('box', 'i'); //创建正则模式,不区分大小写
    var str = 'This is a Box!'; //创建要比对的字符串
    alert(pattern.test(str)); //通过test()方法验证是否匹配

     /*使用一条语句实现正则匹配*/
      alert(/box/i.test('This is a Box!')); //模式和字符串替换掉了两个变量

      var pattern = /box/i;
      var str = 'This is a Box!';
      alert(pattern.exec(str)); //匹配了返回一个数组,否则返回null 

    3.String对象的正则表达式方法

    match(pattern)  ,返回pattern中的子串或null

    replace(pattern,replacement)  ,用replacement替换pattern

    search(pattern)  ,返回字符串中pattern开始位置

    split(pattern)   ,返回字符串按指定pattern 拆分的数组

    /*使用match 方法获取获取匹配数组*/
    var pattern = /box/ig; //全局搜索
    var str = 'This is a Box!,That is a Box too';
    alert(str.match(pattern)); //匹配到两个Box,Box
    alert(str.match(pattern).length); //2 获取数组的长度
    
    /*使用search 来查找匹配数据*/
    var pattern = /box/ig;
    var str = 'This is a Box!,That is a Box too';
    alert(str.search(pattern)); // 10   查找到返回位置,否则返回-1
    PS:因为search 方法查找到即返回,也就是说无需g 全局
    
    /*使用replace 替换匹配到的数据*/
    var pattern = /box/ig;
    var str = 'This is a Box!,That is a Box too';
    alert(str.replace(pattern, 'Tom')); //This is a Tom!,That is a Tom too  ,将Box 替换成了Tom
    
    /*使用split 拆分成字符串数组*/
    var pattern = / /ig;         //空格
    var str = 'This is a Box!,That is a Box too';
    alert(str.split(pattern)); //在空格位置拆开,分组成数组
  • 相关阅读:
    Go微服务全链路跟踪详解
    让Windows加入域的PowerShell
    关掉Windows Firewall的PowerShell
    修改IP地址的PowerShell
    如何得知当前机器上安装的PowerShell是什么版本的?
    如何在Vblock里配置Boot from SAN
    使用MDS Switch基本命令的一个例子
    [转贴]SSL工作原理
    [转贴] 数字证书及 CA 的扫盲介绍
    什么是Copy-Only Backup? 为什么要用它?
  • 原文地址:https://www.cnblogs.com/luhailin/p/6640732.html
Copyright © 2020-2023  润新知