In MongoMapper I can use the following query to search for items based on regex match:
Foo.where(:name => /Foo.*/)
How can I search for items that their name field do not match /Foo.*/?
|
In MongoMapper I can use the following query to search for items based on regex match:
How can I search for items that their |
|||
|
|
|
You can use
|
|||
|
|
|
If you're in python (pymongo), this won't work, you get a confusing error about how you should use BSON regex. However, it will accept python regex objects directly:
|
|||
|
|