Help for this page

Select Code to Download


  1. or download this
    if (lc($name) eq lc($string)) {
    
  2. or download this
    my %hash;
    my $next_key = 'What_I_am_looking_for Irrelevant_String';
    ...
        "Value associated with '$next_key' is '",
        $hash{ lc $next_key }->[1],  # or $hash{ lc $next_key }[1]
        "'\n";