Help for this page

Select Code to Download


  1. or download this
        s( ("[^"]*")     # a quoted field, or standalone part of a field
          | (?<![^;])    # start of line or preceded by semicolon = start 
    +of field
    ...
                  =~ tr/,/./;       # replace ',' with '.'
                $number }           # return value
        }xge;
    
  2. or download this
    m( ( (?:^|") [^"]* ("?) ) | (?<![^;]) ( [\-\d,]+ | ([?]) ) (?![^;]) )x