Skip to content

Instantly share code, notes, and snippets.

@asya999
Last active August 29, 2015 14:01
Show Gist options
  • Save asya999/38e2dcf9af1f82a15ed5 to your computer and use it in GitHub Desktop.
Save asya999/38e2dcf9af1f82a15ed5 to your computer and use it in GitHub Desktop.
findingACharacter
> db.substring.aggregate({"$project":{"_id":0, "machine":1, "shortName":{"$substr":[field,array[searchStart],999]}}})
{ "machine" : "foo.apple.com", "shortName" : "apple.com" }
{ "machine" : "bar.facebook.com", "shortName" : "facebook.com" }
{ "machine" : "baz.mongodb.org", "shortName" : "mongodb.org" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment