The strings Package

Let’s learn about the strings package.

The strings standard Go package allows us to manipulate UTF-8 strings in Go and includes many powerful functions. Many of these functions are illustrated in the useStrings.go code file.

Note: If we are working with text and text processing, we definitely need to learn all the gory details and functions of the strings package, so let’s make sure that we experiment with all these functions and create many examples that will help us to clarify things.

Creating global aliases

The most important parts of useStrings.go are the following:

Press + to interact
import (
"fmt"
s "strings"
"unicode"
)
var f = fmt.Printf

Because we are going to use the strings package multiple times, we create a convenient alias for it named s. We do the same for the fmt.Printf() function where we create a global alias using ...