This is my simple XML file:

<question>
<from>me</me>
<to>you</to>
<message>How to I parse this file?</message>
</question>

The intention is to get the different words out of the XML elements. The final result should be "me, you, How to I parse this file?".

Please guide me with a bit of code is possible.

Thank you.