in reply to Re: pattern to match certain numbers only?in thread pattern to match certain numbers only?
if ( /=\"\d*?0\.\0+\"/ ) { # should match "0.0", "10.000", "120.0", etc... } [download]