I have some XML that looks like this:
<a:feed>
<a:id>http://localhost:8089/</a:id>
<a:entry>
<a:id>test1</a:id>
<a:title/>
<a:summary/>
<a:updated>2016-07-05T13:34:37Z</a:updated>
<a:author>
<a:name/>
</a:author>
<a:link rel="edit" href="test1"/>
<a:category>
</a:entry>
<a:entry>
<a:id>test2</a:id>
<a:title/>
<a:summary/>
<a:updated>2016-07-05T13:34:39Z</a:updated>
<a:author>
<a:name/>
</a:author>
<a:link rel="edit" href="test2"/>
<a:category>
</a:entry>
</a:feed>
I want to load this XML in Scala and remove all text in the <a:updated> tags. How can I do this? Still new to Scala, can't figure this out.