in reply to lower case
if ($var =~ /bob/i) { # Bob matches bob } [download]
if (lc $var eq "bob") { # Bob matches bob } [download]