Help for this page

Select Code to Download


  1. or download this
    my $regex = '^-'
          .('(\S+)\s+'x18)
          .'(.{40})'
          .'(.{40})'
          .'(.*)';
    
  2. or download this
    if (my @match = /$regex/o)
    {
         # ... Use $match[0] through $match[20]
    }