美文网首页
正则表达式

正则表达式

作者: 礼知白 | 来源:发表于2018-08-19 17:05 被阅读0次

    \d,\w,\s,[a-zA-Z0-9],\b,.,*,+,?,x{3},^,$分别是什么?

    \d 表示匹配0-9之间的任一数字,相当于[0-9],举例:
    var str='1a2B3.4_5?6/7%8^9*0'
    console.log(str.match(/\d/g))//["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"]
    
    \w 表示匹配任意的字母、数字和下划线,相当于[A-Za-z0-9_],举例:
    var str='1a2B3.4_5?6/7%8^9*0'
    console.log(str.match(/\w/g))//["1", "a", "2", "B", "3", "4", "_", "5", "6", "7", "8", "9", "0"]
    
    \s 表示匹配空格(包括水平制表符、回车符、换行符、垂直制表符、换页符等),相当于[\t\r\n\v\f],举例:
    var str = 'h e\tl\rl\no'
    str 
    "h e  l
    l
    o"
    str.match(/\s/g)//(4) [" ", "   ", "", "↵"]
    0:" "    //空格符
    1:" "    //水平制表符
    2:""     //回车符
    3:"↵"    //换行符
    
    [a-zA-Z0-9]表示匹配大小写a到z和数字0到9中的任意一个字符,举例:
    var str='1a2B3.4_5?6/7%8^9*0'
    console.log(str.match(/[a-zA-Z0-9]/g))//["1", "a", "2", "B", "3", "4", "5", "6", "7", "8", "9", "0"]
    
    \b 表示匹配单词开头或结尾的匹配。一般字符前面没有字符或者是空格或连接符' - ',可以被匹配成单词的开头。后面没有字符或者是空格或连接符' - ',可以被匹配成单词的结尾。举例:
    var str='She was lovely_. 1Then things-changed.'
    console.log(str.match(/\b[a-zA-Z]+\b/g))//["She", "was", "things", "changed"]
    
    . 表示匹配除回车(\r)、换行(\n)以外的所有字符,例如:
    var str='1 a\r_\nB\t-+?'
    console.log(str.match(/./g))//["1", " ", "a", "_", "B", " ", "-", "+", "?"]
    
    *(星号) 表示出现零次或多次(任意次),举例:
    var str='hello world'
    console.log(str.match(/[a-z]/))   //["h"]
    console.log(str.match(/[a-z]*/))   //["hello"]
    
    +(加号) 表示出现一次或多次(至少出现一次),举例
    var str='hello world'
    console.log(str.match(/[a-z]/))   //["h"]
    console.log(str.match(/[a-z]+/))   //["hello"]
    
    ? 表示出现零次或一次(最多出现一次),举例:
    var str='hello 1world'
    console.log(str.match(/[0-9][a-z]+/g))  //["1world"]
    console.log(str.match(/[0-9]?[a-z]+/g))  //["hello", "1world"]
    
    x{3} 表示x出现3次,举例:
    var str='1xxx xxx xxxx 1xxxx'
    console.log(str.match(/[0-9]?x{3}/g))//["1xxx", "xxx", "xxx", "1xxx"]
    
    ^
    • 方括号外^表示字符串的开始位置,举例:
    var str='hello1 hello2 hello3'
    console.log(str.match(/hello[0-9]/g))  //["hello1", "hello2", "hello3"]
    console.log(str.match(/^hello[0-9]/g))  //["hello1"]
    
    • 方括号内的第一个字符是^,则表示除了字符类之中的字符,其他字符都可以匹配,举例:
    var str='helloworld1 2.3/4_?!'
    console.log(str.match(/[^hello]/g))//["w", "r", "d", "1", " ", "2", ".", "3", "/", "4", "_", "?", "!"]
    
    $ 表示字符串的结束位置,举例:
    var str='hello1 hello2 hello3'
    console.log(str.match(/hello[0-9]$/g))   //["hello3"]
    

    什么是贪婪模式和非贪婪模式?

    贪婪模式:在整个表达式匹配成功的前提下,尽可能多的匹配。
    非贪婪模式:在整个表达式匹配成功的前提下,尽可能少的匹配。
    非贪婪模式只被部分NFA引擎所支持。
    例子:

    源字符串:aa<div>test1</div>bb<div>test2</div>cc
    
    正则表达式一:<div>.*</div>
    
    匹配结果一:<div>test1</div>bb<div>test2</div>
    
    正则表达式二:<div>.*?</div>
    
    匹配结果二:<div>test1</div>(这里指的是一次匹配结果,所以没包括<div>test2</div>)
    

    写一个函数isValidUsername(str),判断用户输入的是不是合法的用户名(长度6-20个字符,只能包括字母、数字、下划线)。

    function isValidUsername(str){
      str.search(/^\w{6,20}$/)===0?console.log('合法用户名'):console.log('不合法用户名')
    }
    isValidUsername('1231231231');//合法用户名
    isValidUsername('12312__3ssD31');//合法用户名
    isValidUsername('123123123dfasdfasdfasdffdsa1');//不合法用户名
    

    写一个函数isPhoneNum(str),判断用户输入的是不是手机号。

    function isPhoneNum(str){
      str.search(/^1\d{10}$/)===0?console.log('是手机号'):console.log('不是手机号')
    }
    isPhoneNum(str)('13204380438');//是手机号
    isPhoneNum(str)('1320438043821');//不是手机号
    isPhoneNum(str)('13204380438dd'); //不是手机号
    

    写一个函数isEmail(str),判断用户输入的是不是邮箱。

    function isEmail(str){
      str.search(/^\w+@\w+\.(com)$/)===0?console.log('是邮箱'):console.log('不是邮箱')
    }
    isEmail('23213dfa213@qq.com');//是邮箱
    isEmail('dfasd32131@123.comdfa');//不是邮箱
    isEmail('dfas__20@dfa.pom');//不是邮箱
    

    写一个函数trim(str),去除字符串两边的空白字符。

    function trim(str){
      if(typeof str !== 'string'){
        return false;
    }
      else {
        return str.replace(/^\s+|\s+$/g, "");
      }
    }
    console.log(trim('  dsafdasfd  '));//'dsafdasfd'
    

    相关文章

      网友评论

          本文标题:正则表达式

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