Help for this page

Select Code to Download


  1. or download this
    if ( lc($foo) =~ lc($bar) ) {
        ...
    }
    
  2. or download this
    if ( index( lc($foo), lc($bar) ) != -1 ) {
        print "Yes\n";
    } else {
        print "No\n";
    }