in reply to Re: pattern to match certain numbers only?
in thread pattern to match certain numbers only?

This might provide a little more flexibility, and a slightly tighter matching:
if ( /=\"\d*?0\.\0+\"/ ) { # should match "0.0", "10.000", "120.0", etc... }