44

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.

kensen john
  • 5,439
  • 5
  • 28
  • 36
  • btw, you source cannot be `\/` if you declare it as a string literal. But I will assume it is coming from somewhere else. – Bozho Apr 08 '11 at 14:27
  • In your example, you replace \ with nothing, not with /; there is already a forward slash. – user unknown Apr 08 '11 at 14:28
  • possible duplicate of [Backslash problem with String.replaceAll](http://stackoverflow.com/questions/1701839/backslash-problem-with-string-replaceall) – McDowell May 26 '11 at 08:38

8 Answers8

55
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.
Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
38

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.

Paŭlo Ebermann
  • 73,284
  • 20
  • 146
  • 210
14

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 ;)

greydet
  • 5,509
  • 3
  • 31
  • 51
7
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.

user unknown
  • 35,537
  • 11
  • 75
  • 121
5

This will replace backslashes with forward slashes in the string:

source = source.replace('\\','/');
Lőrincz Péter
  • 160
  • 2
  • 7
Dale
  • 3,527
  • 6
  • 24
  • 22
2

you have to do

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

because the backshlash should be escaped twice one for string in source one in regular expression

Xavier Combelle
  • 10,968
  • 5
  • 28
  • 52
1

To Replace backslash at particular location:

if ((stringValue.contains("\\"))&&(stringValue.indexOf("\\", location-1)==(location-1))) {
    stringValue=stringValue.substring(0,location-1);
}
Manfred Radlwimmer
  • 13,257
  • 13
  • 53
  • 62
0
 sSource = StringUtils.replace(sSource, "\\/", "/")
Gustavo
  • 785
  • 1
  • 12
  • 31