leetcode 28.找出字符串中第一个匹配项的下标28. 找出字符串中第一个匹配项的下标 - 力扣(Leetcode)简单解法利用split 函数12345678910111213func strStr(haystack string, needle string) int { // 使用split 函数,如果存在needle,则会把其切分为至少两个元素的切片 splitList := strings.Split(haystack, needle) // 如果长度为1,且needle!=haystack 说明没找到匹配项,返回-1 if len(splitList)== 1 && needle!=haystack { return -1 } if len(splitList) > 1 { return len(splitList[0]) } // needle 在haystack的最开头,返回0 return 0} leetcodeleetcode 28.找出字符串中第一个匹配项的下标https://leiqi.top/2023-05-31-396a1cd3c61e.html作者Lei Qi发布于2023年5月31日许可协议 leetcode 2460.对数组执行操作 2023.05.06每日一题 上一篇leetcode 104.二叉树的深度 下一篇 Please enable JavaScript to view the comments