附近小店
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.

1 月之前
12345678910111213
  1. package utils
  2. // ContainsString is 字符串是否包含在字符串切片里
  3. func ContainsString(array []string, val string) (index int) {
  4. index = -1
  5. for i := 0; i < len(array); i++ {
  6. if array[i] == val {
  7. index = i
  8. return
  9. }
  10. }
  11. return
  12. }