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
|
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 |
|||||||||||
|
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.
Hope this helps. |
|||||||||||
|
|
Try :
This code replaces all the white space. |
||||
|
|
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. |
|||||||||
|