代码拉取完成,页面将自动刷新
//++++++++++++++++++++++++++++++++++++++++
// 《Go语言高级开发与实战》源码
//++++++++++++++++++++++++++++++++++++++++
// Author:廖显东(ShirDon)
// Blog:https://www.shirdon.com/
// 公众号:源码大数据
// 仓库地址:https://gitee.com/shirdonl/goAdvanced
// 仓库地址:https://github.com/shirdonl/goAdvanced
//++++++++++++++++++++++++++++++++++++++++
package main
import "fmt"
//检查字符串是否在切片中
func Exist(target string, array []string) bool {
for _, element := range array {
if target == element {
return true
}
}
return false
}
func main() {
nameList := []string{"Barry", "Shirdon", "Jack"}
str1 := "Barry"
str2 := "Go"
result := Exist(str1, nameList)
fmt.Println("Barry 是否在 nameList 中:", result)
result = Exist(str2, nameList)
fmt.Println("Go是否在 nameList 中:", result)
}
//Barry 是否在 nameList 中: true
//Go是否在 nameList 中: false
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。