< Rebol Programming

USAGE:

PARSE-XML code 

DESCRIPTION:

Parses XML code and returns a tree of blocks.

PARSE-XML is a function value.

ARGUMENTS:

  • code -- XML code to parse (Type: string)

SOURCE CODE

parse-xml: func [
    "Parses XML code and returns a tree of blocks." 
    code [string!] "XML code to parse"
][
    xml-language/parse-xml code
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.