El lenguaje Go proporciona soporte incorporado para implementar conversiones hacia y desde representaciones de strings de tipos de datos básicos por strconv Package . Este paquete proporciona una función FormatUint() que se usa para devolver la representación de string de x en la base dada, es decir, 2 <= base <= 36.
Aquí, el resultado usa las letras minúsculas ‘a’ a ‘z’ para valores de dígitos que es mayor que igual a 10. Para acceder a la función FormatUint(), debe importar el paquete strconv en su programa con la ayuda de la palabra clave de importación.
Sintaxis:
func FormatUint(x uint64, base int) string
Parámetro: Esta función toma dos parámetros, es decir, x y base.
Valor devuelto: esta función devuelve la representación de string de x en la base dada, es decir, 2 <= base <= 36.
Ejemplo 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)) }
Producción:
1011 24
Ejemplo 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) }
Producción:
Result 1: 11001 Type 1: string Result 2: 14 Type 2: string
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA