码迷,mamicode.com
首页 > 编程语言 > 详细

Java 实例 - 查找字符串最后一次出现的位置

时间:2018-03-03 14:09:02      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:inf   static   div   info   pack   gpo   ima   alt   []   

 

package string;

public class lastIndexString {
public static void main(String[] args) {
/**
* 
*/
String str="hello I am ZHUXIAOPANG,welcomg to my blog,I think my blog will be better,hello blog";
int lastindex =str.lastIndexOf("blog");
if (lastindex == -1) {
System.out.println("没有找到字符串最后出现的位置");
} else {
System.out.println("字符串最后出现的位置在"+lastindex);
}
}
}

最后输出结果技术分享图片

 

Java 实例 - 查找字符串最后一次出现的位置

标签:inf   static   div   info   pack   gpo   ima   alt   []   

原文地址:https://www.cnblogs.com/zhuxiaopang/p/8496169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!