txmldoc_readdoc.bmx 198 B

12345678910111213
  1. SuperStrict
  2. Framework Text.xml
  3. Import brl.standardio
  4. Local xml:String = LoadText("sample.xml")
  5. Local doc:TxmlDoc = TxmlDoc.readDoc(xml)
  6. If doc Then
  7. doc.savefile("-", , True)
  8. doc.Free()
  9. End If