Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Created December 10, 2015 07:57
Show Gist options
  • Select an option

  • Save YumaInaura/c06b59f6ef2b49aea173 to your computer and use it in GitHub Desktop.

Select an option

Save YumaInaura/c06b59f6ef2b49aea173 to your computer and use it in GitHub Desktop.
Ruby | String には grep じゃなく match ref: http://qiita.com/Yinaura/items/0eb78d64f788fc4a35ce
'ABC'.grep /B/
# => NoMethodError: undefined method `grep'
'ABC'.match /B/
# => #<MatchData "B">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment