dpw50696 2015-08-10 09:06
浏览 9
已采纳

如何为以下要匹配的字符串编写正则表达式模式

I user golang func (*Regexp) Match to check if a string matches some pattern.

matched = regexp.Match(mystr, []byte(pattern))

How can I write pattern to get matched=true when passing mystr fulfilling the following requirements:

  • contain at least one "/"
  • not start with "alex/", "merry/", "david/"

so mystr="publicfile", "alex/personalfile", "merry/personalfile", "david/personalfile" will get rejected, which means matched=false.

How can I write one patter for this purpose? Thanks in advance.

  • 写回答

2条回答 默认 最新

  • douwen5584 2015-08-10 09:28
    关注

    Here is my approach: I reverse the requirements and obtain either false or true:

    ^(alex|merry|david)|^[^/]+$
    

    The regex will match all strings starting with alex, merry or david OR all strings that do not contain /, and with ! operator we reverse the Match result:

    var mystr = "alex/personalfile"
    var pattern = regexp.MustCompile(`^(alex|merry|david)|^[^/]+$`) 
    var matched = !pattern.Match([]byte(mystr))
    fmt.Println(matched)
    

    Result: false

    See IDEONE demo

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度