golang如何实现正则替换所有标点符号的写法

yyzzy123 · · 1900 次点击
txt := "xxx" regp := regexp.MustCompile(\`[\pP]*\`) txt = regp.ReplaceAllString(txt, "")
#1