I have XML in the form of a String that contains
HELLO!
How can I get the String \"Hello!\" from the XML?
I think you would be look at String class, there are multiple ways to do it. What about substring(int,int) and indexOf(int) lastIndexOf(int)?
substring(int,int)
indexOf(int)
lastIndexOf(int)