This is my string:
String str = "CREATE TABLE `patiant` ( `ID` varchar(45) NOT NULL, `PATIANT_NAME`...";
I tried using replace
and replaceAll
methods but didn't work.
Here you can see what I'v tried I don't know why it's not working:
temp = str.replace("'","");
temp = str.replaceAll("(^')","");
How to remove all quotes from the string?
Thanks