Skip to content

Instantly share code, notes, and snippets.

@bradediger
Created March 18, 2009 21:46
Show Gist options
  • Save bradediger/81421 to your computer and use it in GitHub Desktop.
Save bradediger/81421 to your computer and use it in GitHub Desktop.
>> phrases = ["Mr. Gregory Browne", "Mr. Gregory Brown is cool",
"Gregory Brown is cool", "Gregory Brown"]
>> phrases.grep /\AGregory Brown\b/
=> ["Gregory Brown is cool", "Gregory Brown"]
>> phrases.grep /\bGregory Brown\b/
=> ["Mr. Gregory Brown is cool", "Gregory Brown is cool", "Gregory Brown"]
>> phrases.grep /\AGregory Brown\z/
=> ["Gregory Brown"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment