Java解决找出字符串中第一个匹配项的下标
01 题目
-
给你两个字符串
haystack
和needle
,请你在haystack
字符串中找出needle
字符串的第一个匹配项的下标(下标从 0 开始)。如果needle
不是haystack
的一部分,则返回-1
。示例 1:
输入:haystack = "sadbutsad", needle = "sad" 输出:0 解释:"sad" 在下标 0 和 6 处匹配。 第一个匹配项的下标是 0 ,所以返回 0 。
示例 2:
输入:haystack = "leetcode", needle = "leeto" 输出:-1 解释:"leeto" 没有在 "leetcode" 中出现,所以返回 -1 。
提示:
1 <= haystack.length, needle.length <= 104
haystack
和needle
仅由小写英文字符组成
02 知识点
-
字符串函数
-
循环
03 我的题解思路
public class strStr {public static void main(String[] args) {
// 测试数据System.out.println(strStr("sadbutsad", "sad"));}public static int strStr(String haystack, String needle) {
// 循环次数为二者字符串长度之差+1for (int i = 0; i < haystack.length()-needle.length()+1; i++) {
// 截取字符串与目标对比,合格返回下标索引if(haystack.substring(i,i+needle.length()).equals(needle)) {return i;} }
// 没找到返回-1return -1;}
}