qdomdocument

How to get values of child nodes with QDomDocument?

A recieve a string like this: <invoke name="CanClose" returntype="xml"> <arguments> <string># 998.40</string> <number>49920</number> </arguments> </invoke> I'd like to use QDomDocument to get the values of arguments' child nodes by their index (I would like to extract the strings "# 998.40" and "49920" in the examp...