我有以下文本文件,我想解析以获取各个字段:
host_group_web = ( )
host_group_lbnorth = ( lba050 lbhou002 lblon003 )
我想要提取的字段是粗体
host_group_web在()之间没有任何项目,因此该部分将被忽略
我已将第一个组命名为 nodegroup ,并将()之间的项命名为节点
我正在逐行读取文件,并存储结果以供进一步处理。
在Golang中,这是我正在使用的正则表达式的片段:
hostGroupLine := "host_group_lbnorth = ( lba050 lbhou002 lblon003 )"
hostGroupExp := regexp.MustCompile(`host_group_(?P<nodegroup>[[:alnum:]]+)\s*=\s*\(\s*(?P<nodes>[[:alnum:]]+\s*)`)
hostGroupMatch := hostGroupExp.FindStringSubmatch(hostGroupLine)
for i, name := range hostGroupExp.SubexpNames() {
if i != 0 {
fmt.Println("GroupName:", name, "GroupMatch:", hostGroupMatch[i])
}
}
我得到以下输出,缺少节点命名组的其余匹配项。
GroupName: nodegroup GroupMatch: lbnorth
GroupName: nodes GroupMatch: lba050
The Snippet in Golang Playground
我的问题是,如何在Golang中获得与 nodegroup 以及可能在该行中的所有节点匹配的正则表达式,例如lba050 lbhou002 lblon003。 节点数量将从0变化到多少。
答案 0 :(得分:4)
如果要捕获组名称和所有可能的节点名称,则应使用其他正则表达式模式。这个应该一次性捕获所有这些。无需使用命名捕获组,但如果您愿意,也可以使用。
hostGroupExp := regexp.MustCompile(`host_group_([[:alnum:]]+)|([[:alnum:]]+) `)
hostGroupLine := "host_group_lbnorth = ( lba050 lbhou002 lblon003 )"
hostGroupMatch := hostGroupExp.FindAllStringSubmatch(hostGroupLine, -1)
fmt.Printf("GroupName: %s\n", hostGroupMatch[0][1])
for i := 1; i < len(hostGroupMatch); i++ {
fmt.Printf(" Node: %s\n", hostGroupMatch[i][2])
}
中查看此操作
您还可以按awk进行解析的方式工作:使用正则表达式表达式来分割标记中的行并打印您需要的标记。当然,行布局应该与示例中给出的布局相同。
package main
import (
"fmt"
"regexp"
)
func printGroupName(tokens []string) {
fmt.Printf("GroupName: %s\n", tokens[2])
for i := 5; i < len(tokens)-1; i++ {
fmt.Printf(" Node: %s\n", tokens[i])
}
}
func main() {
// regexp line splitter (either _ or space)
r := regexp.MustCompile(`_| `)
// lines to parse
hostGroupLines := []string{
"host_group_lbnorth = ( lba050 lbhou002 lblon003 )",
"host_group_web = ( web44 web125 )",
"host_group_web = ( web44 )",
"host_group_lbnorth = ( )",
}
// split lines on regexp splitter and print result
for _, line := range hostGroupLines {
hostGroupMatch := r.Split(line, -1)
printGroupName(hostGroupMatch)
}
}
中查看此操作