dongwen7813 2018-02-27 09:36
浏览 341
已采纳

匹配单斜杠时出现golang regex错误

I write a pattern and it works in Python, but when I run in Go 1.9.2, it panics:

panic: runtime error: invalid memory address or nil pointer dereference

The code as follows:

package main

import (
    "regexp"
    "fmt"
)



func ReHaveSlash(s string) bool {
    reSlash, _ := regexp.Compile(`^\/(?!\/)(.*?)`)
    a := reSlash.MatchString(s)

    return a

}

func ReHaveSlashdouble(s string) bool {
    reSlash, _ := regexp.Compile(`^\/\/(.*?)`)
    a := reSlash.MatchString(s)

    return a

}

func main() {
    test_url := "/xmars-assets.qiniu.com/archives/1369"
    fmt.Println(ReHaveSlashdouble(test_url))
    fmt.Println(ReHaveSlash(test_url))

}

And the result in Console is as following

false
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x1095e56]

goroutine 1 [running]:
regexp.(*Regexp).get(0x0, 0x0)
    /usr/local/Cellar/go/1.9.2/libexec/src/regexp/regexp.go:211 +0x26
regexp.(*Regexp).doExecute(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10ee1f5, 0x25, 0x0, 0x0, ...)
    /usr/local/Cellar/go/1.9.2/libexec/src/regexp/exec.go:420 +0x40
regexp.(*Regexp).doMatch(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10ee1f5, 0x25, 0xc42000a0c0)
    /usr/local/Cellar/go/1.9.2/libexec/src/regexp/exec.go:412 +0xc8
regexp.(*Regexp).MatchString(0x0, 0x10ee1f5, 0x25, 0x115f400)
    /usr/local/Cellar/go/1.9.2/libexec/src/regexp/regexp.go:435 +0x6c
main.ReHaveSlash(0x10ee1f5, 0x25, 0x1)
    /Users/l2017006/Documents/work/check-link/test_re.go:12 +0x58
main.main()
    /Users/l2017006/Documents/work/check-link/test_re.go:29 +0xa5
  • 写回答

2条回答 默认 最新

  • 普通网友 2018-02-27 09:52
    关注

    Go regexp does not support lookarounds. You may use a negated character class with an alternation group here to fix the issue:

    package main
    
    import (
        "regexp"
        "fmt"
    )
    
    func ReHaveSlash(s string) bool {
        var reSlash = regexp.MustCompile(`^/([^/].*|$)`)
        return reSlash.MatchString(s)
    }
    
    func ReHaveSlashdouble(s string) bool {
        var reSlash = regexp.MustCompile(`^//([^/].*|$)`)
        return reSlash.MatchString(s)
    }
    
    func main() {
        test_url := "/xmars-assets.qiniu.com/archives/1369"
        fmt.Println(ReHaveSlashdouble(test_url))
        fmt.Println(ReHaveSlash(test_url))
    }
    

    See the Go lang demo

    The ^/([^/].*|$) pattern matches a / at the start of the string, and then matches a char other than / followed with any 0+ chars or end of string. The ^//([^/].*|$) matches // followed with any 0+ chars or end of string

    If you want to make sure you only match strings on the same line, replace [^/] with [^/ ] since [^/] also matches line breaks.

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

报告相同问题?

悬赏问题

  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示