我有一个字符串,我想用+替换此字符串中的每个空格,我对此感到厌倦:tw.Text = strings.Replace(tw.Text, " ", "+", 1)但这对我没有用...任何解决方案?例如,字符串可能如下所示:The answer of the universe is 42
3 回答
肥皂起泡泡
TA贡献1829条经验 获得超6个赞
tw.Text = strings.ReplaceAll(tw.Text, " ", "+")
如果您使用的是旧版go(<1.12),请使用strings.Replace
with-1
作为限制(无限)
tw.Text = strings.Replace(tw.Text, " ", "+", -1)
- 3 回答
- 0 关注
- 234 浏览
添加回答
举报
0/150
提交
取消