Code Monkey home page Code Monkey logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 26, 2024
Oops - the regex is incorrect.  brb.

Original comment by [email protected] on 24 Oct 2012 at 6:17

from origami-pdf.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 26, 2024
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 [email protected] on 24 Oct 2012 at 6:29

from origami-pdf.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 26, 2024
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 [email protected] on 24 Oct 2012 at 8:12

from origami-pdf.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 26, 2024
Thank you, I committed your last version :)

Original comment by [email protected] on 20 Dec 2012 at 4:18

  • Changed state: Fixed

from origami-pdf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.