I have a string 12345.00 would like it to return 12345.0
I have looked at trim but looks only to trim whitespace and slice which I don't see how this would work. Any suggs?
|
I have a string 12345.00 would like it to return 12345.0 I have looked at trim but looks only to trim whitespace and slice which I don't see how this would work. Any suggs? |
|||||
|
|
You can use the substring function
|
|||||||||||||||||||
|
|
You can use slice! You just have to make sure you know how to use it. Positive #s are relative to the beginning, negative numbers are relative to the end.
|
|||||||||||||||
|
|
For a number like your example, I would recommend doing this over
Do note that this will actually round the number, though, which I would imagine is desired but maybe not:
|
|||||
|
Sorry for my graphomany but post tagged 'jquery'. So, you can't use *slice()* inside jQuery because slice() is jQuery method for operations with DOM elements, not substrings ... In other words answer @Jon Erickson suggest really perfect solution. However, your method will works out of jQuery function, inside simple Javascript. Need to say due to last discussion in comments, that jQuery is very much more often renewable extension of JS than his own parent most known ECMAScript. Here also exist two methods: as our:
and some other - substr() - which provide range of substring and 'length' can be positive only:
Also some maintainers suggest that last method |
|||||||||||
|
|
How about:
|
||||
|
|
|
If you want to do generic rounding of floats, instead of just trimming the last character:
EDIT: Seems like there exists a built in function for this, as Paolo points out. That solution is obviously much cleaner than mine. Use parseFloat followed by toFixed |
|||
|
|
|
||||
|
|