mongo.regex.create(rmongodb)
mongo.regex.create()所属R语言包:rmongodb
Create a mongo.regex object
创建一个mongo.regex对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create a mongo.regex object for appending to a buffer with<br> mongo.bson.buffer.append.regex() or mongo.bson.buffer.append(), or for embedding in a list such that mongo.bson.buffer.append.list() will properly insert a regular expression value into a mongo.bson.buffer object.
创建一个mongo.regex的对象附加到一个缓冲区中<BR>mongo.bson.buffer.append.regex()或mongo.bson.buffer.append(),或嵌入的列表,例如mongo.bson.buffer.append.list()将正确地插入一个正则表达式的值成蒙戈。bson.buffer对象。
See http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-RegularExpressions
见http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries RegularExpressions
用法----------Usage----------
mongo.regex.create(pattern, options="")
参数----------Arguments----------
参数:pattern
(string) The regular expression.
(字符串)的正则表达式。
参数:options
(string) Options governing the parsing done with the pattern.
(字符串)选项解析的格局。
值----------Value----------
A mongo.regex object
一个mongo.regex对象
参见----------See Also----------
mongo.regex,<br> mongo.bson.buffer.append,<br> mongo.bson.buffer.append.regex,<br> mongo.bson.buffer.append.list,<br> mongo.bson.buffer,<br> mongo.bson.
mongo.regex,参考mongo.bson.buffer.append,参考mongo.bson.buffer.append.regex,参考mongo.bson.buffer.append.list,:参考mongo.bson.buffer,mongo.bson参考。
实例----------Examples----------
buf <- mongo.bson.buffer.create()
regex <- mongo.regex.create("acme.*corp", options="i")
mongo.bson.buffer.append.regex(buf, "MatchAcme", regex)
b <- mongo.bson.from.buffer(buf)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|