Ruby Mongo 映射器包含“abc”?
而不是说:
@b = coll.find("xpto.it" => @email)
如果它等于@email
,我如何查看它是否包含字符串@email
?
编辑
当出现以下情况时它不起作用:
"Donald Trump <[email protected]>"
Instead of saying:
@b = coll.find("xpto.it" => @email)
if it's equal to @email
, how can I look if it contains the string @email
?
EDIT
It doesn't work when there's something like:
"Donald Trump <[email protected]>"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以动态构造正则表达式。要匹配给定的搜索字符串:
参考:
http://api.mongodb.org/ ruby/current/file.TUTORIAL.html
You can also construct a regular expression dynamically. To match a given search string:
Reference:
http://api.mongodb.org/ruby/current/file.TUTORIAL.html