Skip to content

strconv

Documentazione ufficiale: strconv package - strconv - Go Packages

Il pacchetto strconv implementa la conversione tra stringhe e rappresentazioni di tipi di dati di base.

Importazione

go
import (
  "strconv"
)

Di seguito verrà mostrato come utilizzare con esempi.

Stringa in Intero

go
func Atoi(s string) (int, error)
  • s - La stringa da convertire
go
func TestAoti(t *testing.T) {
  ints, err := strconv.Atoi("456789")
  fmt.Println(ints, err)
}
=== RUN   TestAoti
456789 <nil>
--- PASS: TestAoti (0.00s)
PASS

Intero in Stringa

go
func Itoa(i int) string
  • i - Il numero intero da convertire
go
func TestIota(t *testing.T) {
   str := strconv.Itoa(114)
   fmt.Println(str)
}
=== RUN   TestIota
114
--- PASS: TestIota (0.00s)
PASS

Stringa in Booleano

go
func ParseBool(str string) (bool, error)
  • s - La stringa da convertire

Le stringhe che possono essere convertite sono le seguenti

"1", "t", "T", "true", "TRUE", "True" // true
"0", "f", "F", "false", "FALSE", "False" // false
go
func TestAtob(t *testing.T) {
   parseBool, err := strconv.ParseBool("1")
   fmt.Println(parseBool, err)

   b, err := strconv.ParseBool("true")
   fmt.Println(b, err)

   b2, err := strconv.ParseBool("FALSE")
   fmt.Println(b2, err)
}
=== RUN   TestAotb
true <nil>
true <nil>
false <nil>
--- PASS: TestAotb (0.00s)
PASS

Booleano in Stringa

go
func FormatBool(b bool) string
  • b - Valore booleano
go
func TestBota(t *testing.T) {
   fmt.Println(strconv.FormatBool(true))
   fmt.Println(strconv.FormatBool(false))
}
=== RUN   TestBota
true
false
--- PASS: TestBota (0.00s)
PASS

Conversione in Stringa Go

Entrambi convertono la stringa in una stringa Go con virgolette, la differenza è che il secondo converte i caratteri non ASCII tramite escape \u.

go
func TestQuote(t *testing.T) {
  fmt.Println(strconv.Quote("ciao mondo"))
  fmt.Println(strconv.QuoteToASCII("ciao mondo"))
}
=== RUN   TestQuote
"ciao mondo"
"ciao \u4e16\u754c"
--- PASS: TestQuote (0.00s)
PASS

Stringa in Virgola Mobile

go
func ParseFloat(s string, bitSize int) (float64, error)
  • s - La stringa da convertire
  • bitSize - Bit
go
func TestParseFloat(t *testing.T) {
   float, err := strconv.ParseFloat("1.145114", 64)
   fmt.Println(float, err)

   float, err = strconv.ParseFloat("2.3333333333333333333", 64)
   fmt.Println(float, err)
}
=== RUN   TestFloat
1.145114 <nil>
2.3333333333333335 <nil>
--- PASS: TestFloat (0.00s)
PASS

Virgola Mobile in Stringa

Quando si converte una virgola mobile in stringa, l'ufficiale fornisce diversi formati per outputare stili diversi.

// 'b' (-ddddp±ddd, esponente binario),
// 'e' (-d.dddde±dd, esponente decimale con e minuscola),
// 'E' (-d.ddddE±dd, esponente decimale con E maiuscola),
// 'f' (-ddd.dddd, senza esponente), // Di solito si usa questo se non ci sono esigenze speciali
// 'g' (usa formato 'e' per esponenti grandi, formato 'f' per esponenti piccoli),
// 'G' (usa formato 'E' per esponenti grandi, formato 'f' per esponenti piccoli),
// 'x' (-0xd.ddddp±ddd, frazione esadecimale ed esponente binario),
// 'X' (-0Xd.ddddP±ddd, frazione esadecimale ed esponente binario).

Funzione di conversione

go
func FormatFloat(f float64, fmt byte, prec, bitSize int) string
  • f - La virgola mobile da convertire
  • fmt - Tipo di formattazione
  • prec - Precisione, tranne nei casi g/G dove indica il numero massimo di cifre significative, negli altri casi indica il numero di decimali da mantenere
  • bitSize - Bit

Naturalmente, nella maggior parte dei casi si usa direttamente il formato f per convertire i decimali.

go
func TestFormatFloat(t *testing.T) {
   f := 1315643.14159261234567891011
   fmt.Println(strconv.FormatFloat(f, 'f', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'b', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'e', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'x', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'g', 6, 64))
   fmt.Println(strconv.FormatFloat(1.111, 'g', 6, 64))
}
=== RUN   TestFormatFloat
1315643.141593
5650644266346967p-32
1.315643e+06
0x1.4133b2p+20
1.31564e+06
1.111
--- PASS: TestFormatFloat (0.00s)
PASS

Stringa in Numero Complesso

go
func ParseComplex(s string, bitSize int) (complex128, error)
  • s - La stringa da convertire
  • bitSize - Bit
go
func TestParseComplex(t *testing.T) {
   fmt.Println(strconv.ParseComplex("1+2i", 128))
   fmt.Println(strconv.ParseComplex("1+2j", 128))
}
=== RUN   TestParseComplex
(1+2i) <nil>
(0+0i) strconv.ParseComplex: parsing "1+2j": invalid syntax
--- PASS: TestParseComplex (0.00s)
PASS

Numero Complesso in Stringa

go
func FormatComplex(c complex128, fmt byte, prec, bitSize int) string

c - Numero complesso

fmt - Tipo di formattazione, riferimento al tipo di formattazione delle virgole mobili

prec - Riferimento alla precisione delle virgole mobili

bitSize - Bit

go
func TestFormatComplex(t *testing.T) {
   fmt.Println(strconv.FormatComplex(complex(1.1, 12), 'f', 2, 128))
   fmt.Println(strconv.FormatComplex(complex(5.6, 2.8), 'b', 2, 128))
   fmt.Println(strconv.FormatComplex(complex(18.88999, 89.7), 'g', 2, 128))
}
=== RUN   TestFormatComplex
(1.10+12.00i)
(6305039478318694p-50+6305039478318694p-51i)
(19+90i)
--- PASS: TestFormatComplex (0.00s)
PASS

Aggiunta di Dati a Stringa

In altri linguaggi come Java, il risultato di "1"+1 è "11", Java esegue automaticamente la conversione di tipo, mentre in Go tale operazione non è consentita perché i tipi di dati sono diversi. Quindi è necessario utilizzare la funzione Append di strconv, i parametri specifici sono coerenti con le funzioni di conversione dati sopra menzionate.

go
func TestAppend(t *testing.T) {
   bytes := []byte("Qui ci sono alcuni dati:")
   bytes = strconv.AppendInt(bytes, 10, 10)
   bytes = strconv.AppendFloat(bytes, 1.2222, 'f', 2, 64)
   bytes = strconv.AppendBool(bytes, false)
   fmt.Println(string(bytes))
}
=== RUN   TestAppend
Qui ci sono alcuni dati:101.22false
--- PASS: TestAppend (0.00s)
PASS

Golang by www.golangdev.cn edit