From: Lyle Johnson Date: 2006-05-18T01:54:32+09:00 Subject: Re: is there "equalsIgnoreCase" in ruby? On 5/17/06, viswesh wrote: > if fine == "good".casecmp("goo") > #fine == "fine" or > #fine == "ok" or > #fine == "wonderfull" I think that maybe you mean to write: if fine.casecmp("good") puts "Great!" else puts "Oh, I'm sorry." end Hope this helps, Lyle