以下实例使用了 String 类的 indexOf() 方法在字符串中查找子字符串出现的位置,如果存在返回字符串出现的位置(第一位为0),如果不存在返回 -1:
public class SearchStringEmp {
public static void main(String[] args) {
String strOrig = "Google luyaran Taobao";
int intIndex = strOrig.indexOf("luyaran");
if(intIndex == - 1){
System.out.println("没有找到字符串 luyaran");
}else{
System.out.println("luyaran 字符串位置 " + intIndex);
}
}
}
以上代码实例输出结果为:
luyaran 字符串位置 7

本文通过一个具体的Java代码示例介绍了如何使用String类的indexOf()方法来查找一个子字符串在字符串中的位置。该方法返回子字符串首次出现的索引,若未找到则返回-1。示例代码展示了如何判断子字符串是否存在以及其位置。
1715

被折叠的 条评论
为什么被折叠?



