Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。该包提供了一个 FormatUint() 函数,用于返回给定基数中 x 的字符串表示,即 2 <= base <= 36。 这里,结果使用小写字母 ‘a’ 到 ‘z’ 表示较大的数字值比等于 10。要访问 FormatUint() 函数,您需要在程序中借助 import 关键字导入 strconv 包。
用法:
func FormatUint(x uint64, base int) string
参数:这个函数有两个参数,即 x 和 base。
返回值:此函数返回给定基数中 x 的字符串表示,即 2 <= base <= 36。
范例1:
// Golang program to illustrate
// strconv.FormatUint() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding the string representation
// of given value in the given base
// Using FormatUint() function
fmt.Println(strconv.FormatUint(11, 2))
fmt.Println(strconv.FormatUint(24, 10))
}
输出:
1011 24
范例2:
// Golang program to illustrate
// strconv.FormatUint() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding the string representation
// of given value in the given base
// Using FormatUint() function
val1:= uint64(25)
res1:= strconv.FormatUint(val1, 2)
fmt.Printf("Result 1:%v", res1)
fmt.Printf("\nType 1:%T", res1)
val2:= uint64(20)
res2:= strconv.FormatUint(val2, 16)
fmt.Printf("\nResult 2:%v", res2)
fmt.Printf("\nType 2:%T", res2)
}
输出:
Result 1:11001 Type 1:string Result 2:14 Type 2:string
相关用法
- Golang strconv.QuoteRune()用法及代码示例
- Golang strconv.Quote()用法及代码示例
- Golang strconv.QuoteRuneToGraphic()用法及代码示例
- Golang strconv.FormatBool()用法及代码示例
- Golang strconv.CanBackquote()用法及代码示例
- Golang strconv.IsGraphic()用法及代码示例
- Golang strconv.IsPrint()用法及代码示例
- Golang strconv.Itoa()用法及代码示例
- Golang strconv.QuoteToGraphic()用法及代码示例
- Golang strconv.QuoteRuneToASCII()用法及代码示例
- Golang strconv.QuoteToASCII()用法及代码示例
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 How to use strconv.FormatUint() Function in Golang?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。