Sha256: b05087797b68fe0984d67d1acdc0620b352060beb4f3d1b65183ab080591b88e
Contents?: true
Size: 1.24 KB
Versions: 47
Compression:
Stored size: 1.24 KB
Contents
- name: string with i option - matches document: title: King query: title: $regex: k..g $options: i matches: true - name: string with i option - does not match document: title: King query: title: $regex: kkkg $options: i matches: false - name: string with m option - matches document: title: "King\nSir" query: title: $regex: ^Sir $options: m matches: true - name: string with m option - does not match document: title: "King\nSir" query: title: $regex: ^ir $options: m matches: false - name: options given without regex document: title: King query: title: $options: i error: true - name: options are given first document: title: King query: title: $options: i $regex: k..g matches: true - name: regex with i option - matches document: title: King query: title: $regex: !ruby/regexp /k..g/ $options: i matches: true pending: https://jira.mongodb.org/browse/MONGOID-4936 - name: regex with i option - does not match document: title: King query: title: $regex: !ruby/regexp /kkkg/ $options: i matches: false pending: https://jira.mongodb.org/browse/MONGOID-4936
Version data entries
47 entries across 47 versions & 1 rubygems