Java SQL Unescape unescapeSqlString(String input)

Here you can find the source of unescapeSqlString(String input)

Description

Unescape the string that comes from query.

License

Open Source License

Parameter

Parameter Description
input the input string.

Return

the result string.

Declaration

public static String unescapeSqlString(String input) 

Method Source Code

//package com.java2s;

public class Main {
    /**//from w w w  . j a  va 2 s.  com
     * Unescape the string that comes from query.
     * 
     * @param input the input string.
     * @return the result string.
     */
    public static String unescapeSqlString(String input) {
        return input;
    }
}

Related

  1. unescapeMySQLString(String s)
  2. unescapeSQL(String input)
  3. unescapeSQLString(String b)
  4. unescapeSQLString(String b)
  5. unescapeSQLString(String str, String delim)