I have a URL like this: http:\/\/www.example.com\/example in a string object. Can somebody tell me, how to remove the backslashs? I am programming for an blackberry system, in case that is of any relevance. Thank You
|
See String.replace(CharSequence, CharSequence)
|
|||||||||||||
|
|
@Kevin's answer contains a fatal problem. The Also Here are some solutions that should actually work (and compile!):
This simply removes every backslash without considering the context.
This replaces escaped forward slashes with plain forward slashes.
This "de-escapes" any escape sequences in the String, correctly handling escaped backslashes, and not removing a trailing backslash. This version uses a group to capture the character after the backslash, and then refers to it in the replacement string. Note that in the final case we are using the
It is. Blackberry is a J2ME platform, and the J2ME version of String only supports (It is stuff like this that makes Android easier to use ...) |
||||
|
|