我试图从引号之间的字符串中提取所有单词。
这是我当前的代码:
func StrExtract(word string) []string {
r, _ := regexp.Compile(`".*"`)
result := r.FindAllString(word, -1)
RemoveDuplicates(&result)
return (result)
}
在这里测试代码
输入如下:
`Hi guys, this is a "test" and a "demo" ok?`
我得到输出:
["test" and a "demo"]
但我想得到:
[test demo]
请帮我解决这个问题,或提出更好的替代方案。
神不在的星期二
相关分类