Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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+")");
}
share|improve this question
3  
Do you use rank = rank.trim(); or just rank.trim();? The second one won't work. – Baz Jul 28 '12 at 11:28
provide trim() code that you have used .. – Harmeet Singh Jul 28 '12 at 11:41
@Baz question edited – Terry Li Jul 28 '12 at 11:41
@TerryLi Maybe you should give us an idea what (some method) does. – Baz Jul 28 '12 at 11:44
2  
Please show a short but complete program demonstrating the problem. You haven't provided enough information at the moment. – Jon Skeet Jul 28 '12 at 11:50
show 14 more comments

6 Answers

up vote 2 down vote accepted

The source code of that website shows the special html character  . Try searching or replacing the following in your java String: \u00A0.

That's a non-breakable space. See: I have string with "\u00a0" and I need to replace it with "" str_replace fails

rank = rank.replaceAll("\u00A0", "");

should work. Maybe add a double \\ instead of the \.

share|improve this answer
It works!!Thank you. – Terry Li Jul 28 '12 at 12:32
2  
@TerryLi See, if you supply sufficient information, we are able to help you. Glad I could help :) – Baz Jul 28 '12 at 12:33

Are you assigning the String?

String rank = " blabla "; 
rank = rank.trim();

Don't forget the second assignment, or your trimmed string will go nowhere.

You can look this sort of stuff up in the API as well: http://docs.oracle.com/javase/7/docs/api/java/lang/String.html#trim()

As you can see this method returns a String, like most methods that operate on a String do. They return the modified String and leave the original String in tact.

share|improve this answer
question edited – Terry Li Jul 28 '12 at 11:42

You should assign the result of trim back to the String variable. Otherwise it is not going to work, because strings in Java are immutable.

String orig = "    quick brown fox    ";
String trimmed = original.trim();
share|improve this answer
question edited – Terry Li Jul 28 '12 at 11:41

Trim function returns a new copy of the string, with leading and trailing whitespace omitted.

rank = rank.trim();// This will remove and save rank without leading and trailing spaces

will give the result you want.

Replace method will not work if you pass empty string for replacement.

share|improve this answer
question edited – Terry Li Jul 28 '12 at 11:42
1  
If you are not sure about spaces i will suggest you to use regex to extract the number. Use "((-|\\+)?[0-9]+(\\.[0-9]+)?)+" regex will extract number form string. – Kishor Sharma Jul 28 '12 at 11:49
I'll take you advice. But I still wonder what the two spaces denote. – Terry Li Jul 28 '12 at 12:00
@TerryLi Unless you give us more information (like a small working program), we will never know... – Baz Jul 28 '12 at 12:02
@Baz Code added – Terry Li Jul 28 '12 at 12:13

Since String in java are immutable ie they cannot be changed. You need to reassign it to some temporary string. And then using that string you can convert it into int.

String temp=rank.trim()
int te= Integer.parseInt(temp)
share|improve this answer
You don't have to use a temporary String. You can use rank = rank.trim();... – Baz Jul 28 '12 at 11:37
question edited – Terry Li Jul 28 '12 at 11:42

The character is a non-breaking space, and is thus not removed by the trim() method. Iterate through the characters and print the int value of each one, to know which character you must replace by an empty string to get what you want.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.