Skip to content

Instantly share code, notes, and snippets.

@azabaj
Created July 29, 2010 13:52
Show Gist options
  • Save azabaj/498174 to your computer and use it in GitHub Desktop.
Save azabaj/498174 to your computer and use it in GitHub Desktop.
["Test", "Foo", "Bar"].grep 'Foo' => ["Foo"]
["Test", "Foo", "Bar"].grep /ba/i => ["Bar"]
>> [nil, 1, "test", 2.5].grep Numeric => [1, 2.5]
>> [1,5,9,7].grep 5..7 => [5, 7]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment