Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking to replace \n with \\n but so far my regex attempts are not working (Really it is any \ by itself, \n just happens to be the use case I have in the data).

What I need is something along the lines of:

any-non-\ followed by \ followed by any-non-\

Ultimately I'll be passing the regex to java.lang.String.replaceAll so a regex formatted for that would be great, but I can probably translate another style regex into what I need.

For example I after this program to print out "true"...

public class Main
{
    public static void main(String[] args)
    {
        final String original;
        final String altered;
        final String expected;

        original = "hello\nworld";
        expected = "hello\\nworld";
        altered  = original.replaceAll("([^\\\\])\\\\([^\\\\])", "$1\\\\$2");
        System.out.println(altered.equals(expected));
   }
}

using this does work:

    altered  = original.replaceAll("\\n", "\\\\n");
share|improve this question
you need to escape the backslash char, so you need to use two of them eg `\\` – Sarfraz Mar 3 '10 at 18:24
"I am looking to replace \n with \n" How zen of you...;) Your question is a little hard to understand. Do you have an example string and can you also give an example of the expected result? – Vivin Paliath Mar 3 '10 at 18:24
Sarfraz: I've tried all the ways I can think of... thing seems to have worked. – TofuBeer Mar 3 '10 at 18:26
original does not contain \, you need to escape the backslash characters in original and expected too. – Harold L Mar 3 '10 at 18:47
Yeah, there's a newline character but no backslashes. – Michael Myers Mar 3 '10 at 18:49
show 1 more comment

4 Answers

The string should be

"[^\\\\]\\\\[^\\\\]"

You have to quadruple backslashes in a String constant that's meant for a regex; if you only doubled them, they would be escaped for the String but not for the regex.

So the actual code would be

myString = myString.replaceAll("([^\\\\])\\\\([^\\\\])", "$1\\\\$2");

Note that in the replacement, a quadruple backslash is now interpreted as two backslashes rather than one, since the regex engine is not parsing it. Edit: Actually, the regex engine does parse it since it has to check for the backreferences.

Edit: The above was assuming that there was a literal \n in the input string, which is represented in a string literal as "\\n". Since it apparently has a newline instead (represented as "\n"), the correct substitution would be

myString = myString.replaceAll("\\n", "\\\\n");

This must be repeated for any other special characters (\t, \r, \0, \\, etc.). As above, the replacement string looks exactly like the regex string but isn't.

share|improve this answer
didn't do it... Ive updated the question with a simple bit of code – TofuBeer Mar 3 '10 at 18:43
yes, but I don't want to just have it work for \n as there could be \(anything) and I want that to be \\(anything). The only example I have, so far, in the data is t \n but I'd rather not limit the code to \n. – TofuBeer Mar 3 '10 at 19:07
@TofuBeer: My point is, those characters do not actually have a backslash--the backslashes are only in the Java representation. They have nothing else in common. For example, \n is equivalent to \u000A and \t is equivalent to \u0009 (the complete list is at java.sun.com/docs/books/jls/third_edition/html/…). – Michael Myers Mar 3 '10 at 19:35
well the issue is a bit different though too... the \ can appear anywhere in the JSON data not just the Java specific ones. Looking further I did verify that \ in JSON is to be encoded as \\. For now I;ll just handle them as they come up and work with the data provider to properly encode the JSON objects. – TofuBeer Mar 3 '10 at 19:43
@TofuBeer: I guess I still don't understand the requirements, then. Are there backslashes or are there not? – Michael Myers Mar 3 '10 at 20:09
show 3 more comments

So whenever there is 1 backslash, you want 2, but if there is 2, 3 or 4... in a row, leave them alone?

you want to replace

(?<=[^\\])\\(?!\\+)([^\\])

with

\\$1

That changes the string

hello\nworld and hello\\nworld and hello\\\nworld

into

hello\\nworld and hello\\nworld and hello\\\nworld
share|improve this answer
Yes, 1 back slash becomes 2, 2 ore more stays the same. I'll give it a shot. – TofuBeer Mar 3 '10 at 19:07
1  
@Tofu, I'm no Java guy, but I believe you will need to escape the backslashes in the strings you use for creating your regex. As, unlike c#, Java doesn't have verbatim strings (javacamp.org/javavscsharp/string.html) – CaffGeek Mar 3 '10 at 19:51

I don't know exactly what you need it for, but you could have a look at StringEscapeUtils from Commons Lang. They have plenty of methods doing things like that, and if you don't find exactly what you're searching for, you could have a look at the source to find inspiration :)

share|improve this answer

Whats wrong with using altered = original.replaceAll("\\n", "\\\\n"); ? That's exactly what i would have done.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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