美文网首页Go语言实践Go
Golang正则匹配成对的括号

Golang正则匹配成对的括号

作者: 承诺一时的华丽 | 来源:发表于2019-07-03 16:11 被阅读2次

    Test

    func TestGetVaild(t *testing.T)  {
        str:="zxtestcv,Vaild[Email;Min(120)]()][fdwd]"
        var reg = regexp.MustCompile(`Vaild\[(.*?)]`)
        params:=reg.FindStringSubmatch(str)
        for _,param :=range params {
            t.Log(param)
        }
    }
    

    测试结果:

    === RUN   TestGetVaild
    --- PASS: TestGetVaild (0.00s)
        utils_test.go:16: Vaild[Email;Min(120)]
        utils_test.go:16: Email;Min(120)
    PASS
    
    Process finished with exit code 0
    

    相关文章

      网友评论

        本文标题:Golang正则匹配成对的括号

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