Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
377 views
in Technique[技术] by (71.8m points)

ruby - Test if variable matches any of several strings w/o long if-elsif chain, or case-when

I assume there is a nice one-line way to say in ruby

if mystr == "abc" or "def " or "ghi" or "xyz"

but cannot find how to do that in the online references I normally consult...

Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Perhaps you didn't know that you can put multiple conditions on a single case:

case mystr
  when "abc", "def", "ghi", "xyz"
    ..
end

But for this specific string-based test, I would use regex:

if mystr =~ /A(?:abc|def|ghi|xyz)z/

If you don't want to construct a regex, and you don't want a case statement, you can create an array of objects and use Array#include? test to see if the object is in the array:

if [a,b,c,d].include?( o )

or, by monkey-patching Object, you can even turn it around:

class Object
  def in?( *values )
    values.include?( self )
  end
end

if o.in?( a, b, c, d )

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...