SearchFiles(RQDA)
SearchFiles()所属R语言包:RQDA
Search files
搜索文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Search files according to the pattern.
根据该模式搜索文件。
用法----------Usage----------
SearchFiles(pattern, content = FALSE, Fid = NULL, Widget = NULL,is.UTF8 = FALSE)
参数----------Arguments----------
参数:pattern
The criterion of search, see examples section for examples.
搜索标准,请参阅示例一节中的例子。
参数:content
When it is TRUE, the content of files fitting the pattern will be returned as well.
当它是TRUE时,拟合图案的文件内容,以及将返回。
参数:Fid
integer vector, the ids of subset of files to search.
整数向量,部分文件的ID进行搜索。
参数:Widget
Character, name of a gtable widget. If it is not NULL, the file names fitting the pattern will pushed to that gtable widget using svalue method. One useful value is ".fnames_rqda", so the file names will be pushed to the Files Tab of RQDA. Others are ".FileofCat" and ".FileofCase".
字符,名称的gtable小部件。如果不为NULL,则文件名装修模式推到,gtable的部件使用svalue方法。一个有用的值是“。fnames_rqda”,因此将被推到文件“选项卡RQDA的文件名。其他人。FileofCat“和”。FileofCase“。
参数:is.UTF8
If the coding of pattern is UTF-8. If you are not sure, always use FLASE.
如果是UTF-8的编码模式。如果你不知道,总是使用FLASE。
Details
详细信息----------Details----------
This function use select statment of sql to search files (from source database table). The pattern is the WHERE clause (without the keyword WHERE). For more information, please refer to the website of SQLite syntax. All data in *.rqda use UTF-8 encoding, so the encoding of pattern matters. It will be converted to UTF-8 if it is not (is.UTF8=FALSE).
此功能使用select语句的SQL要搜索的文件(从源数据库表)。该模式是在WHERE子句(不包括关键字WHERE)。有关详细信息,请参阅该网站的SQLite语法。所有的数据*。rqda使用UTF-8编码,所以的编码格局事宜。将被转换为UTF-8,如果它是不(is.UTF8 = FALSE)。
值----------Value----------
A data frame with variables:
一个数据框的变量:
参数:id
The file id.
文件ID。
参数:name
The file name.
文件名。
参数:file
The file content. Only return when content is TRUE.
文件的内容。只有内容是TRUE时,返回。
(作者)----------Author(s)----------
HUANG Ronggui
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
## Not run: [#不运行:]
SearchFiles("file like '%keyword%'")
## search for files who contain the word of "keyword"[#文件包含单词“关键字搜索”]
SearchFiles("file like 'keyword%'")
## search for files whose conent begin with the word of "keyword"[#搜索的文件心甘情愿开始的“关键字词”]
SearchFiles("name like '%keyword'")
## search for files whose name end with the word of "keyword"[#搜索的文件名结尾的字“关键字”]
SearchFiles("name like '%keyword one' and file like '%keyword tow%'")
## combined conidtions[#结合conidtions]
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|