阅读量: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