Hi I have a string with quotation marks
String s = "\"hello\"";
and I was wondering how to get rid of the quotes in the string s. Is there a method that can get rid of a specific char? Something like s.getRidofChar(");
|
|
|
Is this what you are looking for:
The |
|||
|
|
|
Edit: Try replaceAll method. |
|||
|
|
If you want to remove a certain character at a certain position, take the substring before and after the character and join them together. |
|||
|
|