Help for this page

Select Code to Download


  1. or download this
    $line =~ m/\s+([a-zA-Z0-9])$/;
    print "$1<br>";
    
  2. or download this
    my ($file) = ( $line =~ m/\b([a-zA-Z0-9]+)$/);
    print "$file<br>" if defined($file);