Keep Getting Stringindexoutofboundsexception
I keep getting a StringIndexOutOfBoundsException on this line: String a = b[1]; Log.d('Debug', a); a= a.substring(content.indexOf(';'), content.indexOf('&
Surely this:
a= a.substring(content.indexOf(";"), content.indexOf("</font>"));
is supposed to be this:
a= a.substring(a.indexOf(";"), a.indexOf("</font>"));
?
You may like these posts
Post a Comment for "Keep Getting Stringindexoutofboundsexception"