How to remove multiple spaces in a string in GoLang?
Removing multiple spaces from a string excludes excessive white space so that there is only a single space between each word in the string.
Remove Multiple Spaces
Example
// Golang program to remove
// multiple white-spaces from string
package main
import (
"fmt"
"strings"
)
func standardizeSpaces(s string) string {
return strings.Join(strings.Fields(s), " ")
}
func main() {
str1 := " Hello, World ! "
fmt.Println(standardizeSpaces(str1))
str2 := "Hello,\tWorld ! "
fmt.Println(standardizeSpaces(str2))
str3 := " \t\n\t Hello,\tWorld\n!\n\t"
fmt.Println(standardizeSpaces(str3))
}
Output
Hello, World !
Hello, World !
Hello, World !
Most Helpful This Week
Split URL and Get Parameters from URLExample: How to use ReadFull from IO Package in Golang?Regular expression to validate common Credit Card NumbersReplace first occurrence of string using RegexpHow to collect information about garbage collection?How to create thumbnail of an image?Dynamic JSON parser without Struct in GolangHow to import and alias package names?How to iterate over an Array using for loop?Golang Slice vs Map Benchmark Testing