I'm trying to use the string builder and need to incorporate a couple of \t tabs inside there but for some reason the tabs arn't being picked up inside the string builder asthough it doesn't recognize them!? I've had inconsistancy with using tabs in string builder before and in my current program they simply arn't working at all!
Has anyone else had this same problem or knows of a fix?
Help would be appreciated, this is rather annoying.
hsReport.append("Player ID:\tScore: \n\n");
for (Player i : highScores) { //for each player in highScores
hsReport.append(i.getId()).append("\t").append(i.getScore()).append("\n");
}
Theres my code, neither of the \t characters are being picked up.