📌  相关文章
📜  if 语句字符串比较 - Go 编程语言 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:44:59.177000             🧑  作者: Mango

代码示例2
import "strings"

// if string found in name it returns 0 else 1
if strings.Compare(name, "compare string") == 1 {
    // Do something
}