Wie konvertiere ich einen Bool in einen String in Go?


84

Ich versuche, einen boolAufruf mithilfe von isExistin einen string( trueoder false) umzuwandeln , string(isExist)aber es funktioniert nicht. Was ist der idiomatische Weg, dies in Go zu tun?


strconv.FormatBool(t)auf true"wahr" setzen. strconv.ParseBool("true")um "wahr" zu setzen true. Siehe stackoverflow.com/a/62740786/12817546 .
Tom L

Antworten:


150

Verwenden Sie das strconv-Paket

docs

strconv.FormatBool(v)

func FormatBool (b bool) string FormatBool gibt
je nach dem Wert von b "true" oder "false" zurück


20

Die zwei Hauptoptionen sind:

  1. strconv.FormatBool(bool) string
  2. fmt.Sprintf(string, bool) stringmit den "%t"oder "%v"Formatierern.

Beachten Sie, dass strconv.FormatBool(...)ist deutlich schneller als fmt.Sprintf(...)durch die folgende Benchmarks demonstriert:

func Benchmark_StrconvFormatBool(b *testing.B) {
  for i := 0; i < b.N; i++ {
    strconv.FormatBool(true)  // => "true"
    strconv.FormatBool(false) // => "false"
  }
}

func Benchmark_FmtSprintfT(b *testing.B) {
  for i := 0; i < b.N; i++ {
    fmt.Sprintf("%t", true)  // => "true"
    fmt.Sprintf("%t", false) // => "false"
  }
}

func Benchmark_FmtSprintfV(b *testing.B) {
  for i := 0; i < b.N; i++ {
    fmt.Sprintf("%v", true)  // => "true"
    fmt.Sprintf("%v", false) // => "false"
  }
}

Rennen wie:

$ go test -bench=. ./boolstr_test.go 
goos: darwin
goarch: amd64
Benchmark_StrconvFormatBool-8       2000000000           0.30 ns/op
Benchmark_FmtSprintfT-8             10000000           130 ns/op
Benchmark_FmtSprintfV-8             10000000           130 ns/op
PASS
ok      command-line-arguments  3.531s

8

Sie können strconv.FormatBoolwie folgt verwenden:

package main

import "fmt"
import "strconv"

func main() {
    isExist := true
    str := strconv.FormatBool(isExist)
    fmt.Println(str)        //true
    fmt.Printf("%q\n", str) //"true"
}

oder Sie können fmt.Sprintwie folgt verwenden:

package main

import "fmt"

func main() {
    isExist := true
    str := fmt.Sprint(isExist)
    fmt.Println(str)        //true
    fmt.Printf("%q\n", str) //"true"
}

oder schreibe wie strconv.FormatBool:

// FormatBool returns "true" or "false" according to the value of b
func FormatBool(b bool) string {
    if b {
        return "true"
    }
    return "false"
}

8

Verwenden fmt.Sprintf("%v", isExist)Sie einfach , wie Sie es für fast alle Typen tun würden.

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.