Below is a string I pull from DB. I need to only pull the 'My Title' text from it. However, this value is different for every entry, so I can't use substring, like str.substring(1,4). The xml around it stays the same.
What's the best way to pull 'My Title'?
<?xml version='1.0' encoding='UTF-8'?><root available-locales="en_US" default-locale="en_US"><Title language-id="en_US">My Title</Title></root>
Thanks!