Golang :Trim white spaces from a string
String manipulation functions are a must have for a programming language and Go has plenty of them. In this tutorial we will see how to trim white spaces of a string in Go
To trim white spaces from a string
str := " This is a string with white spaces\n "
fmt.Printf("%d %q\n", len(str), str)
trimmed := strings.TrimSpace(str)
fmt.Printf("%d %q\n", len(trimmed), trimmed)
output :
38 " This is a string with white spaces\n "
34 "This is a string with white spaces"
Full example code:
package main
import (
"fmt"
"strings"
)
func main() {
str := " This is a string with white spaces\n "
fmt.Printf("%d %q\n", len(str), str)
trimmed := strings.TrimSpace(str)
fmt.Printf("%d %q\n", len(trimmed), trimmed)
}
For more Strings Trim functions reference, please see
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.2k Golang : How to write backslash in string?
+29.5k Golang : JQuery AJAX post data to server and send data back to client example
+7.4k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+6.6k Golang : Spell checking with ispell example
+4.7k Javascript : Detect when console is activated and do something about it
+13.8k Golang : Check if an integer is negative or positive
+9k Golang : What is the default port number for connecting to MySQL/MariaDB database ?
+8k Golang : Ways to recover memory during run time.
+11.7k Android Studio : Create custom icons for your application example
+14k Golang : How to determine if a year is leap year?