Closed GoogleCodeExporter closed 9 years ago
Oops - the regex is incorrect. brb.
Original comment by davejohn...@gmail.com
on 24 Oct 2012 at 6:17
The regex should be this:
sprintf("%f", self).sub(/(?:\.0*$)|(\.\d*[^0]+)0*$/, '\1')
Seems to work better:
irb(main):014:0> [0, 0.000001, 344, 344.5, 344.55, 344.05, 344.0506].each { |a|
puts sprintf("%f", a).sub(/(?:\.0*$)|(\.\d*[^0]+)0*$/, '\1') }
0
0.000001
344
344.5
344.55
344.05
344.0506
Original comment by davejohn...@gmail.com
on 24 Oct 2012 at 6:29
OK - home now and off my bike. I simplified the regex a bit:
sprintf("%f", self).sub(/\.0*$|(\.\d*[^0])0*$/, '\1')
irb(main):004:0> [10110, 1011, 10.11, 1.011, 0.1011, 0.01011, 0.001011].each {
|a| puts sprintf("%f", a).sub(/\.0*$|(\.\d*[^0])0*$/, '\1') }
10110
1011
10.11
1.011
0.1011
0.01011
0.001011
Original comment by davejohn...@gmail.com
on 24 Oct 2012 at 8:12
Thank you, I committed your last version :)
Original comment by guilla...@security-labs.org
on 20 Dec 2012 at 4:18
Original issue reported on code.google.com by
davejohn...@gmail.com
on 24 Oct 2012 at 6:12Attachments: