• 前向后瞻正则表达式及其JS例子


    定义

    x(?=y) 匹配'x'仅仅当'x'后面跟着'y'.这种叫做正向肯定查找

    比如,/Jack(?=Sprat)/会匹配到'Jack'仅仅当它后面跟着'Sprat'。/Jack(?=Sprat|Frost)/匹配‘Jack’仅仅当它后面跟着'Sprat'或者是‘Frost’。但是‘Sprat’和‘Frost’都不是匹配结果的一部分。

    x(?!y) 匹配'x'仅仅当'x'后面不跟着'y',这个叫做正向否定查找。

    比如,/d+(?!.)/匹配一个数字仅仅当这个数字后面没有跟小数点的时候。正则表达式/d+(?!.)/.exec("3.141")匹配‘141’但是不是‘3.141’

    form https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Guide/Regular_Expressions

    见 http://www.cnblogs.com/dolphinx/p/3486214.html 解释的比较好懂。

    例子

    <html>
    <head> 
    </head> 
    <body>
        <input id="test" type="text" value="" />
        <input id="test" type="text" value="" />
        <input id="test" type="text" value="" />
        <input id="test" type="text" value="" />
        <input id="test" type="text" value="" />
        <script>
        var testStr = "windows 95"
        
        /* 1 - 不带子表达式匹配 */
        var testReg = /^windows .*$/
        var result = testStr.match(testReg);
        console.log("/^windows .*$/="+result) // /^windows .*$/=windows 95
        
        /* 2 - 带子表达式匹配 */
        var testReg = /^windows (.*)$/
        var result = testStr.match(testReg);
        console.log("/^windows (.*)$/="+result) // /^windows (.*)$/=windows 95,95
        
        /* 3 - 带子表达式,不记录其匹配结果 */
        var testReg = /^windows (?:.*)$/
        var result = testStr.match(testReg);
        console.log("/^windows (?:.*)$/="+result) // /^windows (?:.*)$/=windows 95
        
        /* 4 - 前瞻匹配,匹配位置,正匹配 */
        var testReg = /^windows (?=95)95$/
        var result = testStr.match(testReg);
        console.log("/^windows (?=.*)$/="+result) // /^windows (?=.*)$/=windows 95
    
        /* 5 - 前瞻匹配,匹配位置,负匹配 */
        var testStr = "windows me"
        var testReg = /^windows (?!95)me$/
        var result = testStr.match(testReg);
        console.log("/^windows (?!d*)$/="+result) // /^windows (?!d*)$/=windows me
        
        </script>
    </body>
    </html>
  • 相关阅读:
    [CF1284E]New Year and Castle Construction
    [BZOJ2178]圆的面积并(格林公式)
    [CF1146H]Satanic Panic(dp)
    [CF1019D]Large Triangle
    [ICPC World Finals 2018][LOJ6409]熊猫保护区(voronoi图)
    [CF gym 101471A][LOJ6470]Airport Construction
    [BZOJ2809]dispatching(左偏树)
    [HDU5784]How Many Triangles
    [CF372E]Drawing circles is fun(反演)
    [NOI2005][BZOJ1502][洛谷P4207]月下柠檬树(自适应Simpson积分)
  • 原文地址:https://www.cnblogs.com/lightsong/p/4493393.html
Copyright © 2020-2023  润新知