Here you can find the source of unescapeSqlString(String input)
Parameter | Description |
---|---|
input | the input string. |
public static String unescapeSqlString(String input)
//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; } }