- 怎麼從字符串中截取到自己想要的字符?
-
public static void main(String[] args) {
//這是一個字符串 我要截取它的a n
String s = "renguanyu";
int x = s.indexOf("a");
System.out.println("開始索引" + x);
int y = s.indexOf("n");
System.out.println("結束索引" + y);
String newstr = s.substring(x, y);
System.out.println(newstr);
}
最佳回答:
public static void main(String[] args) {
// 這是一個字符串 我要截取它的a n
String s1 = "renguanyu";
String s2 = "an";
int anindex = s1.indexOf(s2);
String s3 = s1.substring(anindex,anindex+s2.length());
System.out.println(s3);
}