一段文字想要按预设好的模板将内容解析出来,有什么现成的轮子吗

uprightzy · · 940 次点击
compile := regexp.MustCompile(`^Alert: (.*)\. Time: (.*)\.$`) submatch := compile.FindStringSubmatch("Alert: 服务挂了. Time: 现在.") fmt.Printf("content: %s, alertTime: %s", submatch[1], submatch[2]) 可以看下Submatch的相关函数
#2