String replace a Backslash

121,327

Solution 1

sSource = sSource.replace("\\/", "/");
  • String is immutable - each method you invoke on it does not change its state. It returns a new instance holding the new state instead. So you have to assign the new value to a variable (it can be the same variable)
  • replaceAll(..) uses regex. You don't need that.

Solution 2

Try replaceAll("\\\\", "") or replaceAll("\\\\/", "/").

The problem here is that a backslash is (1) an escape chararacter in Java string literals, and (2) an escape character in regular expressions – each of this uses need doubling the character, in effect needing 4 \ in row.

Of course, as Bozho said, you need to do something with the result (assign it to some variable) and not throw it away. And in this case the non-regex variant is better.

Solution 3

Try

   sSource = sSource.replaceAll("\\\\", "");

Edit : Ok even in stackoverflow there is backslash escape... You need to have four backslashes in your replaceAll first String argument...

The reason of this is because backslash is considered as an escape character for special characters (like \n for instance).
Moreover replaceAll first arg is a regular expression that also use backslash as escape sequence.
So for the regular expression you need to pass 2 backslash. To pass those two backslashes by a java String to the replaceAll, you also need to escape both backslashes.
That drives you to have four backslashes for your expression! That's the beauty of regex in java ;)

Solution 4

s.replaceAll ("\\\\", "");

You need to mask a backslash in your source, and for regex, you need to mask it again, so for every backslash you need two, which ends in 4.

But

s = "http://www.example.com\\/value";

needs two backslashes in source as well.

Solution 5

This will replace backslashes with forward slashes in the string:

source = source.replace('\\','/');
Share:
121,327
kensen john
Author by

kensen john

Updated on July 09, 2022

Comments

  • kensen john
    kensen john almost 2 years

    How can I do a string replace of a back slash.

    Input Source String:

    sSource = "http://www.example.com\/value";
    

    In the above String I want to replace "\/" with a "/";

    Expected ouput after replace:

    sSource = "http://www.example.com/value";
    

    I get the Source String from a third party, therefore I have control over the format of the String.

    This is what I have tried

    Trial 1:

    sSource.replaceAll("\\", "/");
    

    Exception Unexpected internal error near index 1 \

    Trial 2:

     sSource.replaceAll("\\/", "/");
    

    No Exception, but does not do the required replace. Does not do anything.

    Trial 3:

     sVideoURL.replace("\\", "/"); 
    

    No Exception, but does not do the required replace. Does not do anything.

  • Sean Patrick Floyd
    Sean Patrick Floyd about 13 years
    Won't work. use replace() instead of replaceAll() or use four backslashes
  • Paŭlo Ebermann
    Paŭlo Ebermann about 13 years
    For stackoverflow syntax, use `` or four spaces in front to disable parsing (and format it as code).
  • greydet
    greydet about 13 years
    Yep I didn't see that my backslashes were not escaped :) I edited my answer
  • vyegorov
    vyegorov over 9 years
    Could you explain what was wrong with OP's code and why this one is better to use?
  • FibreFoX
    FibreFoX about 8 years
    Plain and simple :D and no regexp ;)