How to check if a string contains certain characters in Golang?
Checking if a string contains certain characters returns True if the string is composed of only the specified characters and False otherwise.
The Contains function from strings package is used to check the given characters present in the given string or not. If the character is present in the given string, then it will return true, otherwise, return false.
Check characters example with boolean output
// Golang program to illustrate
// the strings.Contains() Function
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.Contains("abcd", "b")) // true
fmt.Println(strings.Contains("abcd", "cb")) // false
}
Check characters example to print the desired result instead of a boolean output
package main
import (
"fmt"
"strings"
)
func main() {
input := "p"
str := "Apple"
if strings.Contains(str, input) {
fmt.Println("Yes")
}
}
Most Helpful This Week
Convert specific UTC date time to PST, HST, MST and SGT
How to delete or remove element from a Map?
Get Year, Month, Day, Hour, Min and Second from a specified date
How to check string contains uppercase lowercase character in Golang?
Get Year, Month, Day, Hour, Min and Second from current date and time.
How to get struct variable information using reflect package?