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?

link|improve this question

3  
Do you care about rounding? 12345.46 = 12345.5 or 12345.4? – RSolberg Jun 4 '09 at 20:40
feedback

6 Answers

up vote 62 down vote accepted

You can use the substring function

var str = "12345.00";
str.substring(0, str.length - 1);
link|improve this answer
This only gives the last character. – jimyi Jun 4 '09 at 20:39
I forgot to add the start position. it has been updated. – Jon Erickson Jun 4 '09 at 20:40
Thanks this is what I needed – Phill Pafford Jun 5 '09 at 14:16
33  
str.slice(0, - 1); will work too :) – Kheu Feb 9 '10 at 9:55
1  
@Kheu - the slice notation is much cleaner to me. I was previously using the substring version. Thanks! – Matt Ball Apr 13 '10 at 14:09
show 1 more comment
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.

js>"12345.00".slice(0,-1)
12345.0
link|improve this answer
feedback

For a number like your example, I would recommend doing this over substring:

alert(parseFloat('12345.00').toFixed(1)); // 12345.0

Do note that this will actually round the number, though, which I would imagine is desired but maybe not:

alert(parseFloat('12345.46').toFixed(1)); // 12345.5
link|improve this answer
feedback

How about:

var myString = "12345.00";
myString.substring(0, myString.length - 1);
link|improve this answer
feedback

@Jason S:

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.

js>"12345.00".slice(0,-1) 12345.0

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:

string.substring(from,to) // as plus if 'to' index nulled returns the rest of string. So: string.substring(from) // Positive or Negative ...

//and some other - substr() - which provide range of substring and 'length' can be positive only: string.substr(start,length) // good luck

link|improve this answer
feedback

If you want to do generic rounding of floats, instead of just trimming the last character:

var float1 = 12345.00,
    float2 = 12345.4567,
    float3 = 12345.982;

var MoreMath = {
    /**
     * Rounds a value to the specified number of decimals
     * @param float value The value to be rounded
     * @param int nrDecimals The number of decimals to round value to
     * @return float value rounded to nrDecimals decimals
     */
    round: function (value, nrDecimals) {
        var x = nrDecimals > 0 ? 10 * parseInt(nrDecimals, 10) : 1;
        return Math.round(value * x) / x;
    }
}

MoreMath.round(float1, 1) => 12345.0
MoreMath.round(float2, 1) => 12345.5
MoreMath.round(float3, 1) => 12346.0

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.