Contains, ContainsAny, Count and EqualFold string functions in Go Language
Contains check weather S1 exist in S2 or not while ContainsAny will check any character of S1 exist in S2.
EqualFold reports whether s and t, interpreted as UTF-8 strings, are equal under Unicode case-folding.
Count counts the number of non-overlapping instances of S1 in S2
Example
// Example of using String Functions in Golang Language
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.ContainsAny("Germany", "G"))
fmt.Println(strings.ContainsAny("Germany", "g"))
fmt.Println(strings.Contains("Germany", "Ger"))
fmt.Println(strings.Contains("Germany", "ger"))
fmt.Println(strings.Contains("Germany", "er"))
fmt.Println(strings.Count("cheese", "e"))
fmt.Println(strings.EqualFold("Cat", "cAt"))
fmt.Println(strings.EqualFold("India", "Indiana"))
}
Output
true
false
true
false
true
3
true
false
Most Helpful This Week
Empowering Developers: Google Cloud’s Generative AI Systems
How to read names of all files and folders in current directory?
Golang write CSV records
Top Programming Languages Behind Blockchain App Development
Struct Instantiation Using Pointer Address Operator
React JS Count number of checkboxes are checked