Sometimes, it is required to get value of tag from xml string which has limited tags.
suppose the xml string (say returnString) is
<success>1</success><title>Information</title><message>This is testing</message>
and we need to extract value of success, title and message tags.
See following method for this: