String rank = (some method);
System.out.println("(" + rank + ")");
Outputs (1 )
I need to convert rank to type int(e.g., Integer.parseInt(rank)).
First I have to remove the trailing spaces from the string rank. However, neither rank.trim() nor rank.replace(" ","") would work for me. The string rank just remains the same either way.
What's going wrong here?
EDIT: I DO assign the trimmed value back to rank. But still, it does not work. I suspect the trailing spaces might not be real spaces.
EDIT: The output string rank is of length 2, however, it looks like it is with two trailing spaces(in this case the length should be 3).
EDIT:
Document doc = Jsoup.connect("http://www.4icu.org/ca/").timeout(1000000).get();
Element table = doc.select("table").get(7);
Elements rows = table.select("tr");
for (Element row: rows) {
String rank = row.select("span").first().text().trim();
System.out.println("("+rank+")");
}
rank = rank.trim();or justrank.trim();? The second one won't work. – Baz Jul 28 '12 at 11:28(some method)does. – Baz Jul 28 '12 at 11:44