Sunday, May 5, 2024
HomeGolangTake away duplicate areas from a string in Go (Golang)

Take away duplicate areas from a string in Go (Golang)



To take away duplicate whitespaces from a string in Go, use strings.Fields() operate that splits the string round a number of whitespace characters, then be part of the slice of substrings utilizing strings.Be part of() with a single area separator. Alternatively, you should use an everyday expression to search out duplicate whitespace characters and exchange them utilizing the ReplaceAllString() methodology from the regexp bundle.

Take away duplicate whitespaces utilizing strings.Fields() operate

bundle fundamental

import (
    "fmt"
    "strings"
)

func fundamental() {
    s := "GOSAMPLES.dev is  t rn the perfect Golang tttt    web site within the n world!"

    res := strings.Be part of(strings.Fields(s), " ")
    fmt.Println(res)
}

On this methodology, we do two issues:

  • We cut up the string round a number of whitespace characters utilizing the strings.Fields() operate. The whitespace characters are outlined by unicode.IsSpace(), and embrace 't', 'n', 'r', ' ', amongst others. Because of this, we get the slice:
[]string{"GOSAMPLES.dev", "is", "the", "finest", "Golang", "web site", "in", "the", "world!"}
  • We be part of the slice of substrings utilizing the strings.Be part of() operate with a single area " " as a separator. This fashion, we assemble the consequence string with all duplicate whitespaces eliminated.

Take away duplicate whitespaces utilizing common expressions

bundle fundamental

import (
    "fmt"
    "regexp"
)

func fundamental() {
    s := "GOSAMPLES.dev is  t rn the perfect Golang tttt    web site within the n world!"

    sample := regexp.MustCompile(`s+`)
    res := sample.ReplaceAllString(s, " ")
    fmt.Println(res)
}

Utilizing common expressions, we are able to obtain the identical impact as within the earlier methodology. We outline s+ sample that matches no less than one whitespace character ([ trnf]) after which exchange all occurrences of that expression with a single area, acquiring the string with duplicate whitespaces eliminated.


Each strategies produce the identical consequence, which is:

GOSAMPLES.dev is the finest Golang web site in the world!
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments