我真的停留在這個異常字符串索引越界異常中
private static void getUserComment(String s) {
while(s.contains("author'>")){
System.out.println(s.substring(s.indexOf("author'>"),
s.indexOf("<div id='")));
s = s.substring(0, s.indexOf("author'>")) +
s.substring(s.indexOf("<div id='"+9));
}
}
你的輸入字符串是什麼樣的? – Mat
哪一行導致異常? – Arjan
打印和子字符串語句都會產生這個異常 – Nayef