Jaki jest skuteczny sposób przycinania wiodących i końcowych białych znaków zmiennej łańcuchowej w Go?
Jaki jest skuteczny sposób przycinania wiodących i końcowych białych znaków zmiennej łańcuchowej w Go?
Odpowiedzi:
Na przykład,
package main
import (
"fmt"
"strings"
)
func main() {
s := "\t Hello, World\n "
fmt.Printf("%d %q\n", len(s), s)
t := strings.TrimSpace(s)
fmt.Printf("%d %q\n", len(t), t)
}
Wynik:
16 "\t Hello, World\n "
12 "Hello, World"
Jest wiele funkcji do przycinania strun.
Zobacz je tam: Przytnij
Oto przykład, zaadaptowany z dokumentacji, usuwający początkowe i końcowe białe spacje:
fmt.Printf("[%q]", strings.Trim(" Achtung ", " "))
fmt.Printf("%q", strings.Trim("\t\t\t\t", `! \t`))
To nie działa
strings.TrimSpace(str)
?
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.TrimSpace(" \t\n Hello, Gophers \n\t\r\n"))
}
Wynik: Hello, Gophers
I po prostu kliknij ten link - https://golang.org/pkg/strings/#TrimSpace
Do przycinania swój ciąg, pakiet Go „struny” mają TrimSpace()
, Trim()
funkcję wykończenia początkowe i końcowe spacje.
Sprawdź dokumentację, aby uzyskać więcej informacji.
Tak jak wspomniał @Kabeer, możesz użyć TrimSpace, a oto przykład z dokumentacji golang:
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.TrimSpace(" \t\n Hello, Gophers \n\t\r\n"))
}
@peterSO ma poprawną odpowiedź. Tutaj dodaję więcej przykładów:
package main
import (
"fmt"
strings "strings"
)
func main() {
test := "\t pdftk 2.0.2 \n"
result := strings.TrimSpace(test)
fmt.Printf("Length of %q is %d\n", test, len(test))
fmt.Printf("Length of %q is %d\n\n", result, len(result))
test = "\n\r pdftk 2.0.2 \n\r"
result = strings.TrimSpace(test)
fmt.Printf("Length of %q is %d\n", test, len(test))
fmt.Printf("Length of %q is %d\n\n", result, len(result))
test = "\n\r\n\r pdftk 2.0.2 \n\r\n\r"
result = strings.TrimSpace(test)
fmt.Printf("Length of %q is %d\n", test, len(test))
fmt.Printf("Length of %q is %d\n\n", result, len(result))
test = "\r pdftk 2.0.2 \r"
result = strings.TrimSpace(test)
fmt.Printf("Length of %q is %d\n", test, len(test))
fmt.Printf("Length of %q is %d\n\n", result, len(result))
}
Możesz to znaleźć również na placu zabaw Go lang .