我将一个库从Ruby移植到Go,并且刚刚发现Ruby中的正则表达式与Go(谷歌RE2)不兼容。我注意到Ruby& Java(以及其他语言使用PCRE正则表达式(perl兼容,支持捕获组)),所以我需要重新编写表达式,以便它们在Go中编译好。
例如,我有以下正则表达式:
`(?<Year>\d{4})-(?<Month>\d{2})-(?<Day>\d{2})`
这应该接受输入,例如:
2001-01-20
捕获组允许将年,月和日捕获到变量中。为了获得每个群体的价值,这很容易;您只需使用组名索引返回的匹配数据,然后返回值。所以,例如获得年份,就像这个伪代码:
m=expression.Match("2001-01-20")
year = m["Year"]
这是我在表达式中使用很多的模式,所以我有很多重写要做。
那么,有没有办法在Go regexp中获得这种功能;我应该如何重写这些表达式?
答案 0 :(得分:49)
我应该如何重写这些表达式?
按照定义的here添加一些P:
(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})
使用re.SubexpNames()
交叉参考捕获组名称。
并使用as follows:
package main
import (
"fmt"
"regexp"
)
func main() {
r := regexp.MustCompile(`(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})`)
fmt.Printf("%#v\n", r.FindStringSubmatch(`2015-05-27`))
fmt.Printf("%#v\n", r.SubexpNames())
}
答案 1 :(得分:16)
我创建了一个处理url表达式的函数,但它也适合你的需求。您可以查看this代码段,但它的工作方式如下:
/**
* Parses url with the given regular expression and returns the
* group values defined in the expression.
*
*/
func getParams(regEx, url string) (paramsMap map[string]string) {
var compRegEx = regexp.MustCompile(regEx)
match := compRegEx.FindStringSubmatch(url)
paramsMap = make(map[string]string)
for i, name := range compRegEx.SubexpNames() {
if i > 0 && i <= len(match) {
paramsMap[name] = match[i]
}
}
return
}
您可以使用此功能,如:
params := getParams(`(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})`, `2015-05-27`)
fmt.Println(params)
,输出结果为:
map[Year:2015 Month:05 Day:27]
答案 2 :(得分:8)
要在不调用循环内部的匿名函数的情况下提高RAM和CPU使用率,而不使用“append”函数在内存中复制数组,请参阅下一个示例:
您可以使用多行文本存储多个子组,而不使用'+'附加字符串,也不使用for循环for for循环(就像此处发布的其他示例一样)。
txt := `2001-01-20
2009-03-22
2018-02-25
2018-06-07`
regex := *regexp.MustCompile(`(?s)(\d{4})-(\d{2})-(\d{2})`)
res := regex.FindAllStringSubmatch(txt, -1)
for i := range res {
//like Java: match.group(1), match.gropu(2), etc
fmt.Printf("year: %s, month: %s, day: %s\n", res[i][1], res[i][2], res[i][3])
}
输出:
year: 2001, month: 01, day: 20
year: 2009, month: 03, day: 22
year: 2018, month: 02, day: 25
year: 2018, month: 06, day: 07
注意:res [i] [0] = ~matse.group(0)Java
如果要存储此信息,请使用结构类型:
type date struct {
y,m,d int
}
...
func main() {
...
dates := make([]date, 0, len(res))
for ... {
dates[index] = date{y: res[index][1], m: res[index][2], d: res[index][3]}
}
}
最好使用匿名组(性能改进)
使用Github上发布的“ReplaceAllGroupFunc”是个坏主意,因为:
答案 3 :(得分:2)
从 GO 1.15 开始,您可以使用 Regexp.SubexpIndex
来简化流程。您可以在 https://golang.org/doc/go1.15#regexp 查看发行说明。
根据您的示例,您会得到如下内容:
re := regexp.MustCompile(`(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})`)
matches := re.FindStringSubmatch("Some random date: 2001-01-20")
yearIndex := re.SubexpIndex("Year")
fmt.Println(matches[yearIndex])
您可以在 https://play.golang.org/p/ImJ7i_ZQ3Hu 检查并执行此示例。
答案 4 :(得分:1)
如果您需要在捕获群组时根据功能进行替换,可以使用:
import "regexp"
func ReplaceAllGroupFunc(re *regexp.Regexp, str string, repl func([]string) string) string {
result := ""
lastIndex := 0
for _, v := range re.FindAllSubmatchIndex([]byte(str), -1) {
groups := []string{}
for i := 0; i < len(v); i += 2 {
groups = append(groups, str[v[i]:v[i+1]])
}
result += str[lastIndex:v[0]] + repl(groups)
lastIndex = v[1]
}
return result + str[lastIndex:]
}
示例:
str := "abc foo:bar def baz:qux ghi"
re := regexp.MustCompile("([a-z]+):([a-z]+)")
result := ReplaceAllGroupFunc(re, str, func(groups []string) string {
return groups[1] + "." + groups[2]
})
fmt.Printf("'%s'\n", result)
答案 5 :(得分:0)
基于@VasileM答案确定组名的简单方法。
免责声明:与内存/ CPU /时间优化无关
package main
import (
"fmt"
"regexp"
)
func main() {
r := regexp.MustCompile(`^(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})$`)
res := r.FindStringSubmatch(`2015-05-27`)
names := r.SubexpNames()
for i, _ := range res {
if i != 0 {
fmt.Println(names[i], res[i])
}
}
}
答案 6 :(得分:0)
您可以为此使用 regroup
库
https://github.com/oriser/regroup
示例:
package main
import (
"fmt"
"github.com/oriser/regroup"
)
func main() {
r := regroup.MustCompile(`(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})`)
mathces, err := r.Groups("2015-05-27")
if err != nil {
panic(err)
}
fmt.Printf("%+v\n", mathces)
}
将打印:map[Year:2015 Month:05 Day:27]
或者,您可以像这样使用它:
package main
import (
"fmt"
"github.com/oriser/regroup"
)
type Date struct {
Year int `regroup:"Year"`
Month int `regroup:"Month"`
Day int `regroup:"Day"`
}
func main() {
date := &Date{}
r := regroup.MustCompile(`(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})`)
if err := r.MatchToTarget("2015-05-27", date); err != nil {
panic(err)
}
fmt.Printf("%+v\n", date)
}
将打印:&{Year:2015 Month:5 Day:27}
答案 7 :(得分:0)
通过 nil 指针检查获取正则表达式参数的函数。如果发生错误,则返回 map[]
// GetRxParams - Get all regexp params from string with provided regular expression
func GetRxParams(rx *regexp.Regexp, str string) (pm map[string]string) {
if !rx.MatchString(str) {
return nil
}
p := rx.FindStringSubmatch(str)
n := rx.SubexpNames()
pm = map[string]string{}
for i := range n {
if i == 0 {
continue
}
if n[i] != "" && p[i] != "" {
pm[n[i]] = p[i]
}
}
return
}