結合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