1
votes
votes
5 answers
Perl RegEx
Hi all, I need a perl regular expression to format a number. Example input would be 34300. I'd like the output to be 34,300.00. I found this while googling, but it's not quite what I need. [code] s/\G(\d{1,3})(?=(?:\d\d\d)+(?:\ ...
