dongliuxia9495 2019-05-17 02:41
浏览 361
已采纳

Golang中的正则表达式斜线

I have two links:

1: /aaa/bbbb/ccccc.htm
2: /xxx/yyy.htm

What regex is able to match the second link?

I have tried:

^\/.*\/.*[^\/].* 

But, it match all of them.

  • 写回答

1条回答 默认 最新

  • dongshimao7115 2019-05-17 03:33
    关注

    I'm guessing that we might want to pass both URLs, which in that case we would start with:

    (\/[a-z]+)?(?:\.htm)?
    

    We can then add more boundaries, if you wish.

    RegEx

    If this wasn't your desired expression, you can modify/change your expressions in regex101.com.

    enter image description here

    RegEx Circuit

    jex.im visualizes regular expressions:

    enter image description here

    JavaScript Group Breakup

    const regex = /((\/[a-z]+)?(?:\.htm)?)/gm;
    const str = `/aaa/bbbb/ccccc.htm
    /xxx/yyy.htm`;
    const subst = `Group #1: $1
    Group #2: $2
    `;
    
    // The substituted value will be contained in the result variable
    const result = str.replace(regex, subst);
    
    console.log('Substitution result: ', result);


    If you only wish to pass the second URL and fail the first one, you can simply add some boundaries to your expression, maybe something similar to this would work:

    ^\/[a-z]+\/[a-z]+.htm$
    

    enter image description here

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制