Hi, @Jyra,
You can use one Java function that is Java String Replaceall(): This method finds all occurrences of a sequence of characters matching a regular expression and replaces them with the replacement string. At the end of the call, a new string is returned by the function.
public class Career {
public static void main(String args[]) {
String str = "\"select * from ABC;\""
String str2 = str.replaceAll("\"","");
);
System.out.println(str2);
}
}
I hope this will help you.