跳转到内容

Rebol 编程/解析 XML

来自维基教科书,开放世界中的开放书籍
PARSE-XML code 

解析 XML 代码并返回一个块树。

PARSE-XML 是一个函数值。

  • 代码 -- 要解析的 XML 代码(类型:字符串)

源代码

[编辑 | 编辑源代码]
parse-xml: func [
    "Parses XML code and returns a tree of blocks." 
    code [string!] "XML code to parse"
][
    xml-language/parse-xml code
]
华夏公益教科书