You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package utils
-
- // ContainsString is 字符串是否包含在字符串切片里
- func ContainsString(array []string, val string) (index int) {
- index = -1
- for i := 0; i < len(array); i++ {
- if array[i] == val {
- index = i
- return
- }
- }
- return
- }
|