reg = regexp.MustCompile(`(Abc|a7c|你好)`) fmt.Printf("%s\n", reg.ReplaceAllString(text, "**"))
其中text是从哪个字符串中替换,**代表的是要替换的内容。reg是正则
2023-10-16 15:39:58
reg = regexp.MustCompile(`(Abc|a7c|你好)`) fmt.Printf("%s\n", reg.ReplaceAllString(text, "**"))
其中text是从哪个字符串中替换,**代表的是要替换的内容。reg是正则