Help for this page

Select Code to Download


  1. or download this
    my @delete_list = map {s/^delete_check_//; $_} (grep /^delete_check_/,
    + keys %session);
    
  2. or download this
    my $str = "Helloooo, nurse!"
    my ($greeting, $recipient) = $str =~ m/^(\w+),\s+(\w+)/;
    print "Greeting: '$greeting', Recipient: '$recipient'\n";