最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Truncate decimal number (as strings) to a fixed number of places - Stack Overflow

programmeradmin0浏览0评论

I want to truncate numbers (given as strings) to a fixed number of decimal places. The numbers can be negative (with a minus sign), positive (no sign). I'd prefer to round the numbers properly and keep trailing zeroes. I want the same number of decimal places, no matter how long the whole number is. The numbers will be stored back as strings.

For example:

140.234234234 -> 140.234
1.123123 -> 1.123
-12.789789 -> -12.790

I want to truncate numbers (given as strings) to a fixed number of decimal places. The numbers can be negative (with a minus sign), positive (no sign). I'd prefer to round the numbers properly and keep trailing zeroes. I want the same number of decimal places, no matter how long the whole number is. The numbers will be stored back as strings.

For example:

140.234234234 -> 140.234
1.123123 -> 1.123
-12.789789 -> -12.790
Share Improve this question asked Jan 18, 2013 at 17:14 nevan kingnevan king 114k45 gold badges207 silver badges243 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

First parse them as floats, then format with toFixed:

var nums = [
    "140.234234234", // -> 140.234
    "1.123123", // -> 1.123
    "-12.789789" // -> -12.790
];

nums.forEach(function(n) {
    console.log(parseFloat(n).toFixed(3));
});

http://codepen.io/anon/pen/IvxmA

Any number can be displayed as a fixed decimal place string by using .toFixed:

var num = 140.234234234;
var fixedDecimalPlace = num.toFixed(3); // is "140.234"
function truncate( numberString, trunk ) {
    var onpoint = numberString.split('.',2);
    var numberStringTruncated = numberString;
    if (onpoint.length > 1) {
        numberStringTruncated = onpoint[0] + '.' + onpoint[1].substring(0,trunk);
    }
    return numberStringTruncated;
}

This does not consider rounding or padding. As the other answer suggested, you should use parseFloat followed by toFixed

发布评论

评论列表(0)

  1. 暂无评论