我有一个DNS查询,该查询返回了我需要的字段,但是现在我需要从响应中解析一个3位数字。
我正在解析的响应块如下所示:
_ref: "network/ZG5zLm5ldHdvcmskMTAuMC45MS4wLzI0LzA:10.0.91.0/24/default"
comment: "Vlan xyz site number 777 "
network: "10.0.91.0/24"
network_view: "default"
这看起来像正确的正则表达式,但是我没有得到回应:
re := regexp.MustCompile("[0-9]+")
fmt.Println(re.FindAllString("%s", -1))
最佳答案
检查documentation for regexp.FindString(string)
以确保参数正确;您应该给它搜索字符串...
re := regexp.MustCompile(`\d{3}`)
search := "Vlan xyz site number 777 "
match := re.FindString(search)
fmt.Printf("OK: %q\n", match)
// OK: "777"
关于go - 正则表达式查找字符串中的3位整数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51502686/