在Java中,如何结合indexOf与substring使用

avatar
作者
筋斗云
阅读量:0

结合indexOf和substring可以用来找到字符串中特定子串的位置并且提取该子串。

示例代码如下:

String str = "Hello, world!"; String subStr = "world";  int index = str.indexOf(subStr); // 查找子串在原字符串中的位置  if (index != -1) {     String result = str.substring(index, index + subStr.length()); // 提取子串     System.out.println("子串在原字符串中的位置为:" + index);     System.out.println("提取的子串为:" + result); } else {     System.out.println("原字符串中未找到子串:" + subStr); } 

运行以上代码,输出为:

子串在原字符串中的位置为:7 提取的子串为:world 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!