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.

How do I remove the white space that are in front and back of &

http://chemist.com:8080/eShop/search_results.jsp?IDNUMBER=BB55-7344 & Source=BuildingBlocks

share|improve this question
Where does the URL come from? Is is a string object you have? – Simon Oct 16 '12 at 10:37
It comes from a server. i need to redirect this url to another page And it does go as there is white space. The original url has a and instead of & i have replace it thus i get the whitespace – user1310156 Oct 16 '12 at 10:41
Please show the code where you replace a with & – Simon Oct 16 '12 at 10:47
if(result.contains("and"){ { resultnew=result.replace("and","&").toString(); resultnew.replaceAll(" ","").trim(); } Here is my code – user1310156 Oct 16 '12 at 10:51
Can you provide the original URL with the "and"? – Astrorvald Oct 16 '12 at 11:52
show 1 more comment

closed as not a real question by AVD, bmargulies, Praveen, Tim, LittleBobbyTables Oct 16 '12 at 18:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

String newUrl = oldUrl.replaceAll(" ", "");

Hope this helps.

share|improve this answer
Hi i have tried this but does not work. – user1310156 Oct 16 '12 at 10:42
@user1310156, Please clarify what "does not work" means. – Egor Oct 16 '12 at 10:49
the repalceAll(" ",""); function odes not work for me over here – user1310156 Oct 16 '12 at 11:12
@user1310156, Why doesn't it work? What happens? I won't be able to help you if you won't describe your issue properly. – Egor Oct 16 '12 at 11:20
The problem is that this url is got from a server and this url it self contains and insted of & so i replaced and with & but the and in original url has white spaces so it does not remove it – user1310156 Oct 16 '12 at 11:24
show 1 more comment

Try :

urlString = urlString.replaceAll(" ", "%20");

This code replaces all the white space.

share|improve this answer
Or just .replace(" ", "%20");. – eightx2 Oct 16 '12 at 11:27

Try:

String newURI = oldURI.replaceAll("\\s+", "");
share|improve this answer
if(result.contains(" and "){ 
      resultnew = result.replace(" and ","&amp").toString(); 
} 

You don't really need the "if" check, although it is faster (unless result always contains " and ") as replace() will return the input string if " and " is not found. You also don't need the toString() since replace() returns a String.

share|improve this answer
Thank you but there is no effect of this the white space does not go. – user1310156 Oct 16 '12 at 11:18
The white space does not go or the and is not replaced? (ie the if content is executed or not?) – Astrorvald Oct 16 '12 at 14:24
Please show the value of resultNew – Simon Oct 16 '12 at 15:33
And the value of result – Simon Oct 16 '12 at 15:51

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