在 Python 中,我可以声明一个变量为d ='/some/dir/%s',然后%s用任何值替换为>>> d = '/some/dir/%s'>>> d % "hello"'/some/dir/hello'是否可以在 Go 中做同样的事情?如果是这样,如何?
1 回答
萧十郎
TA贡献1815条经验 获得超13个赞
是的,fmt.Sprintf这样做:
d := "/some/dir/%s"
fmt.Sprintf(d, "hello") // Returns "/some/dir/hello"
- 1 回答
- 0 关注
- 186 浏览
添加回答
举报
0/150
提交
取消