Welcome! Today, we're going to delve into the crucial operations associated with Strings in Go. Strings are fundamental in most programming languages as they are used for displaying and manipulating textual data. In this lesson, you'll learn about the basic string operations in Go, such as concatenation, comparison, and the use of common functions from the strings
package.
Even though we already know what concatenation is and how it works, revisiting it strengthens our understanding! Concatenation — the process of joining items together — is a principal string operation. In Go, we achieve string concatenation by using the +
operator.
In this case, "Hello, "
and "World!"
were combined to form the string "Hello, World!"
.
There are often times when we need to compare strings. Fortunately, in Go, the simple comparison operators ==
and <
work perfectly fine.
Here, as firstWord
and secondWord
are equal, areEqual
is true
.
The <
operator is used to determine if one string is alphabetically before the other.
As you can see, the comparison result is true
, which means that alphabetically, "Apple"
comes before "Banana"
, because A
comes before B
. A string that would come before another string in the dictionary is considered less than the other. In case of a tie, Go
will compare the following letter. For example, "Apple"
will be less than "Application"
, because e
is less than i
. As the first four letters in the words are equal, Go
compares the fifth one.
In Go, unlike some other languages, strings do not have built-in methods. However, the Go Standard Library provides a package named strings
which contains many useful string-related functions. Among them, some functions are pretty common:
len()
: This function returns the number of characters in a string.
strings.ToLower()
andstrings.ToUpper()
: These functions return the string either in lowercase or in uppercase, respectively.
strings.TrimSpace()
: This function removes all white spaces at the beginning and the end of a string.
Excellent job! You've deepened your understanding of string operations and functions in Go. We've explored how to concatenate and compare strings. Additionally, we covered some of the most frequently used functions in the strings
package.
The upcoming practice exercises will allow you to apply what you've learned about string operations in Go. With each step, you're getting closer to mastering Go programming! Keep going and good luck!
