string 匹配

string 匹配

strA = "new" strB="up"  strC =""
strC 的值是自己输入的值
要求: 当strC = strA 或者 strB中包含的字符 不区分大小写
eg:
strC ="n" 满足 
strC ="ne" 满足
strC ="up" 满足
strC ="np" 不满足
if strA.include?(t.downcase) or strB.include?(t.downcase)
 puts "ok"
else
 puts "no exist!"
end
谢谢!!
学习了...