assertion - Finding alphanumeric using ruby -


new forum. trying run test find â or using assertion

text.include? "â" , "€" 

but getting errors.

try:

text.include?("â") || text.include?("€") 

or:

/â|€/.match(text) 

Comments

Popular posts from this blog

ruby - How do I merge two hashes into a hash of arrays? -

java - the value of local variable is not used -