xmlHandler(XML)
xmlHandler()所属R语言包:XML
Example XML Event Parser Handler Functions
示例XML事件解析器处理函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A closure containing simple functions for the different types of events potentially called by the xmlEventParse, and some tag-specific functions to illustrate how one can add functions for specific DTDs and XML element types. Contains a local list which can be mutated by invocations of the closure's function.
A封闭,为不同类型的事件可能由xmlEventParse称为含有简单的功能,和一些特定的标记的功能,来说明如何具体DTD和XML元素的类型,一个可以添加功能。包含一个本地列表可以关闭的功能调用突变。
用法----------Usage----------
xmlHandler()
值----------Value----------
List containing the functions enumerated in the closure definition along with the list.
列表,其中包含的闭包的定义中所列举的功能的列表。
注意----------Note----------
This is just an example.
这仅仅是一个例子。
(作者)----------Author(s)----------
Duncan Temple Lang
参见----------See Also----------
xmlEventParse, xmlTreeParse
xmlEventParse,xmlTreeParse
实例----------Examples----------
## Not run: [#不运行:]
xmlURL <- "http://www.omegahat.org/Scripts/Data/mtcars.xml"
xmlText <- paste(scan(xmlURL, what="", sep="\n"),"\n",collapse="\n")
## End(Not run)[#(不执行)]
xmlURL <- system.file("exampleData", "mtcars.xml", package="XML")
xmlText <- paste(readLines(xmlURL), "\n", collapse="")
xmlEventParse(xmlText, handlers = NULL, asText=TRUE)
xmlEventParse(xmlText, xmlHandler(), useTagName=TRUE, asText=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|