Golang : Strings comparison
Given that mostly backend services deal with text data. There bound to be times when there is a need to compare strings. So how does one compare strings in Golang? After digging around....finally found out that the strings.EqualFold
function can be used to compare strings (case insensitive)
For example :
package main
import (
"fmt"
"strings"
)
func main() {
string1 := "Hello"
string2 := "World"
string3 := "HELLo"
// true
bool1 := strings.EqualFold(string1, string1)
// false
bool2 := strings.EqualFold(string1, string2)
// true
bool3 := strings.EqualFold(string1, string3)
fmt.Printf("%s is equal to %s : %v \n", string1, string1, bool1)
fmt.Printf("%s is equal to %s : %v \n", string1, string2, bool2)
// EqualFold comparison is case IN-sensitive
fmt.Printf("%s is equal to %s : %v \n", string1, string3, bool3)
}
Output :
Hello is equal to Hello : true
Hello is equal to World : false
Hello is equal to HELLo : true
Reference :
See also : Golang : Regular Expression find string example
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
+25.9k Golang : Convert IP address string to long ( unsigned 32-bit integer )
+7.3k Golang : Accessing dataframe-go element by row, column and name example
+8.4k Golang : How to check variable or object type during runtime?
+14.9k Golang : Search folders for file recursively with wildcard support
+14.7k Golang : Get URI segments by number and assign as variable example
+5.7k Golang : Error handling methods
+43.1k Golang : Convert []byte to image
+13.3k Golang : Generate Code128 barcode
+8.5k Android Studio : Import third-party library or package into Gradle Scripts
+5.7k Unix/Linux : Get reboot history or check when was the last reboot date