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

c++ - Do gcc's __float128 floating point numbers take the current rounding mode into account? -

java - the value of local variable is not used -