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)
new forum. trying run test find â
or €
using assertion
text.include? "â" , "€"
but getting errors.
try:
text.include?("â") || text.include?("€")
or:
/â|€/.match(text)
Comments
Post a Comment