Given that i have a Node
var xml = XML.loadFile("some/file/here")
what can i do should i want to change the value of some element to a new value
That is,
...
<anElement>5</anElement>
...
to
...
<anElement>blooblahblahyah</anElement>
...
Apologies if this is a pretty silly question, i'm incredibly new to Scala and haven't found any definitive answer on xml editing.