Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Regular expression doesn't work in Go

Tags:

regex

go

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

like image 788
djhworld Avatar asked Jun 21 '26 02:06

djhworld


2 Answers

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

var regex string = `^.+=\b0x[A-F][A-F]\b$`
like image 84
antoyo Avatar answered Jun 23 '26 05:06

antoyo


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

like image 36
Denys Séguret Avatar answered Jun 23 '26 05:06

Denys Séguret



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!