strings.Contains Function in Golang is used to check the given letters present in the given string or not. If the letter is present in the given string, then it will return true, otherwise, return false.
Syntax:
func Contains(str, substr string) bool
Here, str is the original string and substr is the string that you want to check. Let us discuss this concept with the help of an example:
Example 1:
Go
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.Contains( "GeeksforGeeks" , "for" ))
fmt.Println(strings.Contains( "A computer science portal" , "science" ))
}
|
Output:
true
true
Explanation: In the above example, we check the presence of sub-string ‘for’ and ‘science’ in different strings. Since strings.Contains() function returns boolean value, it returns true in both the cases.
Example 2: Following example illustrates how the user can print the desired result instead of a boolean output:
Go
package main
import (
"fmt"
"strings"
)
func main() {
input := "Golang"
str := "This is a Golang program"
if strings.Contains(str, input) {
fmt.Println( "Yes" )
}
}
|
Output:
Yes
Explanation: In the above example, we take a sub-string as ‘input’ and the main string as ‘str’. Then, we check if ‘Golang’ is present in the main string. If so, ‘Yes’ is returned as the output as shown above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Dec, 2021
Like Article
Save Article