Help for this page

Select Code to Download


  1. or download this
    $_[0] =~ m/([a-zA-Z0-9\-\_\/\.\,]+)
               \s*\t
               ([^\t]+)
    ...
               \t?
               ([0-9\.]+)?/x; # note the x modifier to allow for
                              # multiline format
    
  2. or download this
    $_[0] =~ m/([a-zA-Z0-9\-\_\/\.\,]+)
               \s*\t
               (.+?)
    ...
               ([0-9\.]+)
               \t?
               ([0-9\.]+)?/x;