http://www.perlmonks.org?node_id=183735


in reply to Checking for numbers and a period

So the possibilities are that a price might fall into the following catagories:

1) 300.25
2) 300.
3) 300
4) .25

or if you want to visit Europe, replace the periods with commas.
my $price = $some_price_formatted_like_above; if ($price =~ /\d+[.,]?\d*|[.,]\d+/) {...}
...where the first portion of the pattern matches the first three possible formats listed above and the second portion matches a format like .25.
Have I missed any formats?

Cheers,
Kristina
UpdatePlease include the anchors ^$ as in Corion's update. It will prevent the if statement from running as my code would return true for 300.25.25.
Corion's code misses fractions of cents. Like if something is 99 and 1/2 cent. This may be a desirable trait though. My code misses the European spaces. All the code I've seen so far also misses things like 1,000,000,000.25. This can still be written for, but how far do you really need to go to accomplish your task?