Java String Quote Unescape unescapeDoubleQuote(String stringToReplace)

Here you can find the source of unescapeDoubleQuote(String stringToReplace)

Description

unescape Double Quote

License

Apache License

Declaration

public static String unescapeDoubleQuote(String stringToReplace) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static String unescapeDoubleQuote(String stringToReplace) {
        return stringToReplace.replaceAll("\\\\\"", "\"");
    }//w  w w.ja  va2 s  . c  om
}

Related

  1. unescape(CharSequence string, int quoteChar, boolean useAsciiEscapes, StringBuilder sb)
  2. unescapeDoubleQuote(String string)
  3. unescapeDoubleQuotes(String string)
  4. unescapeDoubleQuotesAndBackslashes(final String input)
  5. unescapePhpSingleQuotedStringContent(String escapedContent)
  6. unescapeQuote(String src)