golang if statement with string code example
Example: golang if statement with string
import "strings"
// if string found in name it returns 0 else 1
if strings.Compare(name, "compare string") == 1 {
// Do something
}
import "strings"
// if string found in name it returns 0 else 1
if strings.Compare(name, "compare string") == 1 {
// Do something
}