Go 判断是否存在 字符串是否存在于指定字符串数组中Golang中是没有类似 Python in_array 函数的,所以要判断一个字符串数组中是否包含一个特定的字符串,就需要自行处理 12345678func inArray(a string,b []string) bool { for _,value := range b { if a == value { return true } } return false} Go #Go Go 判断是否存在 https://flepeng.github.io/021-Go-36-脚本-Go-判断是否存在/ 作者 Lepeng 发布于 2024年12月6日 许可协议 10-viper 解析 yaml 文件 上一篇 Go 文件操作 下一篇 Please enable JavaScript to view the comments