How to find an element inside a Ruby array
Nothing really new under the sun, but a simple recap or reference article in case you are lost :) https://bootrails.com/blog/how-to-find-element-inside-a-ruby-array/
Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!
Nothing really new under the sun, but a simple recap or reference article in case you are lost :) https://bootrails.com/blog/how-to-find-element-inside-a-ruby-array/
Comments
grep
can be a fun one to consider for certain situations too, e.g.['abc', 'bzz', 'aaa'].grep(/a/)
Post a comment