懂得感恩,是收获幸福的源泉。懂得感恩,你会发现原来自己周围的一切都是那样的美好。
以下实例使用了 String 类的 indexOf() 方法在字符串中查找子字符串出现的位置,如过存在返回字符串出现的位置(第一位为0),如果不存在返回 -1:
public class SearchStringEmp{
public static void main(String[] args) {
String strOrig = "Hello readers";
int intIndex = strOrig.indexOf("Hello");
if(intIndex == - 1){
System.out.println("Hello not found");
}else{
System.out.println("Found Hello at index "
+ intIndex);
}
}
}
以上实例结果为:
Found Hello at index 0
以上就是Java 实例 - 字符串搜索。做你没做过的事情叫成长,做你不愿意做的事情叫改变,做你不敢做的事情叫突破。更多关于Java 实例 - 字符串搜索请关注haodaima.com其它相关文章!