Java中字符串中子串的查找共有四种方法,如下:
1、int indexOf(String str) :返回第一次出现的指定子字符串在此字符串中的索引。
2、int indexOf(String str, int startIndex):从指定的索引处开始,返回第一次出现的指定子字符串在此字符串中的索引。
3、int lastIndexOf(String str) :返回在此字符串中最右边出现的指定子字符串的索引。
4、int lastIndexOf(String str, int startIndex) :从指定的索引处开始向后搜索,返回在此字符串中最后一次出现的指定子字符串的索引。
知道了它实现的功能就可以自己构造方法,把字符串拆解成单个字符比对之后返回索引就可以了,下面是一个简单例子,输出字符出现的索引值
public static void main(String args[])
{
String str="hello world";
char c='e';
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i)==c) {
System.out.println((i+1));
}
}