Regular expression doesn't work in Go

徘徊边缘 提交于 2021-02-15 06:43:25

问题


forgive me for being a regex amateur but I'm really confused as to why this doesn't piece of code doesn't work in Go

package main

import (
    "fmt"
    "regexp"
)

func main() {
    var a string = "parameter=0xFF"
    var regex string = "^.+=\b0x[A-F][A-F]\b$"
    result,err := regexp.MatchString(regex, a)
    fmt.Println(result, err)
}
// output: false <nil>

This seems to work OK in python

import re

p = re.compile(r"^.+=\b0x[A-F][A-F]\b$")
m = p.match("parameter=0xFF")
if m is not None:
    print m.group()

// output: parameter=0xFF

All I want to do is match whether the input is in the format <anything>=0x[A-F][A-F]

Any help would be appreciated


回答1:


Have you tried using raw string literal (with back quote instead of quote)? Like this:

var regex string = `^.+=\b0x[A-F][A-F]\b$`



回答2:


You must escape the \ in interpreted literal strings :

var regex string = "^.+=\\b0x[A-F][A-F]\\b$"

But in fact the \b (word boundaries) appear to be useless in your expression.

It works without them :

var regex string = "^.+=0x[A-F][A-F]$"

Demonstration



来源:https://stackoverflow.com/questions/14183704/regular-expression-doesnt-work-in-go

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!