blah blah blah is here! blah blah » Close

1
votes
5 answers

Perl RegEx

foamy
2499

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)+(?:\ ...

1
votes
2 answers

Get selected value from dropdown

foamy
2499

Hi all, Perl question for you: Been trying for hours and it seems I'm just missing something. I have a form with a dropdown list on it. I want to get the selected value (the "option value" part) and store it in a variable fo ...

Feedback