Help for this page

Select Code to Download


  1. or download this
    if ($var =~ /bob/i) {
        # Bob matches bob
    }
    
  2. or download this
    if (lc $var eq "bob") {
        # Bob matches bob
    }