I've been googling around and trying to find out what is the behaviour of lastIndexOf, but can't really find the answer to it...
I have a potentially large string that I need to search, and I'm 99% positive that a tag, ex: </data> will be at the end of it. I am trying to strip that off and append some extra data to the string and then close it off again after.
Right now I'm using indexOf, but performance is my top priority here, so I was thinking of using lastIndexOf...
Could some expert with Java confirm whether lastIndexOf would search from the back of the string?
Example:
xml = xml.substring(0, xml.lastIndexOf("</data>"));
xml+"<mystuff>hello world</mysruff>";
xml+"</data>";