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?
| |||||
feedback
|
|
You can use the substring function
| |||||||||||||||
feedback
|
|
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.
| |||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
How about:
| ||||
|
feedback
|
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. Here also exist two methods: //as our:
//and some other - substr() - which provide range of substring and 'length' can be positive only:
| ||||
|
feedback
|
|
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 | |||
|
feedback
|