xmlContainsEntity(XML)
xmlContainsEntity()所属R语言包:XML
Checks if an entity is defined within a DTD.
如果一个实体在DTD定义的检查。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A DTD contains entity and element definitions. These functions test whether a DTD contains a definition for a particular named element or entity.
一个DTD包含实体和元素的定义。这些功能测试是否DTD包含一个特定的元素或实体的定义。
用法----------Usage----------
xmlContainsEntity(name, dtd)
xmlContainsElement(name, dtd)
参数----------Arguments----------
参数:name
The name of the element or entity being queried.
被查询的元素或实体的名称。
参数:dtd
The DTD in which to search for the entry.
在DTD要在其中搜索条目。
Details
详细信息----------Details----------
See parseDTD for more information about DTDs, entities and elements.
见parseDTD有关DTD,实体和元素的详细信息。
值----------Value----------
A logical value indicating whether the entry was found in the appropriate list of entitiy or element definitions.
一个逻辑值,该值指示是否发现在适当的entitiy或元素定义列表。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
parseDTD, dtdEntity, dtdElement,
parseDTD,dtdEntity,dtdElement,
实例----------Examples----------
dtdFile <- system.file("exampleData", "foo.dtd", package="XML")
foo.dtd <- parseDTD(dtdFile)
# Look for entities.[看的实体。]
xmlContainsEntity("foo", foo.dtd)
xmlContainsEntity("bar", foo.dtd)
# Now look for an element[现在,寻找一个元素]
xmlContainsElement("record", foo.dtd)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|