Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
12345678910111213 |
- 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
- }
|