Help for this page

Select Code to Download


  1. or download this
    sub txt($) {
      local $_=shift;
      my (undef, undef,$txt)=m{^\s*(\d+)\s+(\d+),(.*)};
      $txt;
    }
    
  2. or download this
    sub txt {
      shift =~ /^\s*\d+\s+\d+,(.*)/;
      return $1;
    }