Skip to content

Instantly share code, notes, and snippets.

@hoangbits
Created June 3, 2022 03:01
Show Gist options
  • Save hoangbits/d3960cb587197f308ecfa595786c607c to your computer and use it in GitHub Desktop.
Save hoangbits/d3960cb587197f308ecfa595786c607c to your computer and use it in GitHub Desktop.
irb(main):015:0> ["1",2,3,4,5].select {|val| val.is_a? Numeric }
=> [2, 3, 4, 5]
irb(main):016:0> ["X","-",3,4,5].select {|val| val.is_a? Numeric or val == "X"}
=> ["X", 3, 4, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment