Java String Quote Unescape unescapeDoubleQuotesAndBackslashes(final String input)

Here you can find the source of unescapeDoubleQuotesAndBackslashes(final String input)

Description

unescape Double Quotes And Backslashes

License

Open Source License

Declaration

public static String unescapeDoubleQuotesAndBackslashes(final String input) 

Method Source Code

//package com.java2s;

public class Main {
    public static String unescapeDoubleQuotesAndBackslashes(final String input) {
        return input.replace("\\\"", "\"").replace("\\\\", "\\");
    }// w w  w .ja v  a 2s.  co m
}

Related

  1. unescape(CharSequence string, int quoteChar, boolean useAsciiEscapes, StringBuilder sb)
  2. unescapeDoubleQuote(String string)
  3. unescapeDoubleQuote(String stringToReplace)
  4. unescapeDoubleQuotes(String string)
  5. unescapePhpSingleQuotedStringContent(String escapedContent)
  6. unescapeQuote(String src)
  7. unEscapeQuotedComma(String str)
  8. unescapeQuotes(final String text)