如何在golang中的一个字符串中插入一个数字

前端之家收集整理的这篇文章主要介绍了如何在golang中的一个字符串中插入一个数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package main

import (
    "fmt"
)

func main() {
    fmt.Println(say(9))
}

func say(num int)(total string){
return fmt.Sprintf("There are %s reasons to code!",num)
}

我的输出

There are %!s(int=9) reasons to code!

我应该如何在字符串中插入一个数字?

如果要始终使用“默认”表示,无论使用什么类型,请使用%v作为in
fmt.Sprintf("There are %v reasons to code!",num)
原文链接:https://www.f2er.com/go/187103.html

猜你在找的Go相关文章