Java 实例 - 查找字符串最后一次出现的位置
Posted 猪小胖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 实例 - 查找字符串最后一次出现的位置相关的知识,希望对你有一定的参考价值。
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 实例 - 查找字符串最后一次出现的位置的主要内容,如果未能解决你的问题,请参考以下文章