getXMLErrors(XML)
getXMLErrors()所属R语言包:XML
Get XML/HTML document parse errors
XML / HTML文档的解析错误
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function is intended to be a convenience for finding all the errors in an XML or HTML document due to being malformed, i.e. missing quotes on attributes, non-terminated elements/nodes, incorrectly terminated nodes, missing entities, etc. The document is parsed and a list of the errors is returned along with information about the file, line and column number.
此功能的目的是为了方便发现由于是畸形的,即缺少引号的属性的XML或HTML文档中的所有错误,结尾的元素/节点,终止节点不正确,缺少实体等对文档进行解析一起被返回的错误的列表有关下列内容的信息的文件,行数和列数。
用法----------Usage----------
getXMLErrors(filename, parse = xmlParse, ...)
参数----------Arguments----------
参数:filename
the identifier for the document to be parsed, one of a local file name, a URL or the XML/HTML content itself
要解析的文件的标识符,一个本地文件名,URL或XML / HTML内容本身
参数:parse
the function to use to parse the document, usually either xmlTreeParse or htmlTreeParse.
要使用的函数解析文档,通常是xmlTreeParse或htmlTreeParse。
参数:...
additional arguments passed to the function given by parse
额外的参数传入的功能由parse的
值----------Value----------
A list of S3-style XMLError objects.
S3风格XMLError对象列表。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
<h3>See Also</h3> <code>error</code> argument for <code>xmlTreeParse</code> and related functions.
实例----------Examples----------
# Get the "errors" in the HTML that was generated from this Rd file[获得“错误”,从这个号文件,生成的HTML]
getXMLErrors(system.file("html", "getXMLErrors.html", package = "XML"))
## Not run: [#不运行:]
getXMLErrors("http://www.omegahat.org/index.html")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|