parseURI(XML)
parseURI()所属R语言包:XML
Parse a URI string into its elements
解析URI字符串分解成元素,
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This breaks a URI given as a string into its different elements such as protocol/scheme, host, port, file name, query. This information can be used, for example, when constructing URIs relative to a base URI.
这打破了其不同的元素,如协议/方案,主机,端口,文件名称,查询字符串转换成一个URI。此信息可用于,例如,当构建的URI相对于基URI。
The return value is an S3-style object of class URI.
返回值是S3风格的对象的类URI。
This function uses libxml routines to perform the parsing.
该函数使用libxml的例程来完成解析。
用法----------Usage----------
parseURI(uri)
参数----------Arguments----------
参数:uri
a single string
一个单一的字符串
值----------Value----------
A list with 8 elements
有8个元素的列表
参数:scheme
the name of the protocol being used, http, ftp as a string.
正在使用的协议的名称,HTTP,FTP作为一个字符串。
参数:authority
a string represeting a rarely used aspect of URIs
一个很少使用方面的URI字符串represeting
参数:server
a string identifying the host, e.g. www.omegahat.org
一个字符串来标识主机,例如www.omegahat.org
参数:user
a string giving the name of the user, e.g. in FTP "ftp://duncan@www.omegahat.org", this would yield "duncan"
一个字符串,给出的用户的名称,例如在FTP“ftp://duncan @ www.omegahat.org”,这将产生“邓肯”
参数:path
a string identifying the path of the target file
一个字符串来标识目标文件的路径
参数:query
the CGI query part of the string, e.g. the bit after '?' of the form name=value&name=value
CGI查询字符串的一部分,例如位后?“形式name=value&name=value
参数:fragment
a string giving the coo
一个字符串,给出首席运营官(COO)
参数:port
an integer identifying the port number on which the connection is to be made
识别连接的端口号是一个整数
参见----------See Also----------
getRelativeURL
getRelativeURL
实例----------Examples----------
parseURI("http://www.omegahat.org:8080/RCurl/index.html")
parseURI("ftp://duncan@www.omegahat.org:8080/RCurl/index.html")
parseURI("ftp://duncan@www.omegahat.org:8080/RCurl/index.html#my_anchor")[my_anchor“)]
as(parseURI("http://duncan@www.omegahat.org:8080/RCurl/index.html#my_anchor"), "character")[my_anchor“),”性格“)]
as(parseURI("ftp://duncan@www.omegahat.org:8080/RCurl/index.html?foo=1&bar=axd"), "character")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|