Help for this page

Select Code to Download


  1. or download this
    my ($variable) = `echo $line` =~ /(\w+)$/;
    
  2. or download this
    my $output = `echo $line`;
    $output =~ s/(\w+)$//;
    my $last_word = $1;