docName(XML)
docName()所属R语言包:XML
Accessors for name of XML document
访问XML文件的名称
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions and methods allow us to query and set the “name” of an XML document. This is intended to be its URL or file name or a description of its origin if raw XML content provided as a string.
这些函数和方法,使我们能够查询和设置的XML文件的“名称”。这样做的目的是它的URL或文件名或说明其来源,如果原始XML作为字符串的内容提供。
用法----------Usage----------
docName(doc, ...)
参数----------Arguments----------
参数:doc
the XML document object, of class XMLInternalDocument or XMLDocument.
XML文档对象,的类XMLInternalDocument或XMLDocument。
参数:...
additional methods for methods
额外的方法方法
值----------Value----------
A character string giving the name. If the document was created from text, this is NA (of class character).
给一个字符串的名称。如果从文本文档的创建,这是NA(类字符)。
The assignment function returns the updated object, but the R assignment operation will return the value on the right of the assignment!
该的赋值函数返回更新的对象,但在R赋值运算符将返回值分配的权利!
(作者)----------Author(s)----------
Duncan Temple Lang
参见----------See Also----------
xmlTreeParse xmlInternalTreeParse newXMLDoc
xmlTreeParsexmlInternalTreeParsenewXMLDoc
实例----------Examples----------
f = system.file("exampleData", "catalog.xml", package = "XML")
doc = xmlInternalTreeParse(f)
docName(doc)
doc = xmlInternalTreeParse("<a><b/></a>", asText = TRUE)
# an NA[一个NA]
docName(doc)
docName(doc) = "Simple XML example"
docName(doc)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|