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

javascript - Display number in brackets using toLocaleString for negative values - Stack Overflow

programmeradmin1浏览0评论

I have been trying to change the numbers in AngularJS application according to the countries and used .toLocaleString function over entire application using below function

numberValueTransformation(value) {
    if (value === 0 || value === undefined) {
      return 0;
    }
    const currencyLocale = this.UserPreferences.getCountryLocale().replace(/fr-FR/g, 'de-DE');
    const currencyCode = this.UserPreferences.getCountryCode();
    return Number(value).toLocaleString(currencyLocale, {
      // style: 'currency',
      currency: currencyCode,
      minimumFractionDigits: 2
    });
}

The above function works perfectly fine but I have a requirement to show the negative values in brackets over whole application. Can we modify .toLocaleString to get the negative values in brackets or do I need to change in the entire application manually? I get the value as $123456689. But if a negative value i get -$123456789, but here i want the value as ($123456789) <--- brackets represents minus.

I have been trying to change the numbers in AngularJS application according to the countries and used .toLocaleString function over entire application using below function

numberValueTransformation(value) {
    if (value === 0 || value === undefined) {
      return 0;
    }
    const currencyLocale = this.UserPreferences.getCountryLocale().replace(/fr-FR/g, 'de-DE');
    const currencyCode = this.UserPreferences.getCountryCode();
    return Number(value).toLocaleString(currencyLocale, {
      // style: 'currency',
      currency: currencyCode,
      minimumFractionDigits: 2
    });
}

The above function works perfectly fine but I have a requirement to show the negative values in brackets over whole application. Can we modify .toLocaleString to get the negative values in brackets or do I need to change in the entire application manually? I get the value as $123456689. But if a negative value i get -$123456789, but here i want the value as ($123456789) <--- brackets represents minus.

Share Improve this question edited Feb 21, 2019 at 21:17 Aniruddhsingh Rathore asked Feb 21, 2019 at 18:49 Aniruddhsingh RathoreAniruddhsingh Rathore 3118 silver badges25 bronze badges 6
  • 1 What means "the negative values in brackets"? – Roko C. Buljan Commented Feb 21, 2019 at 18:51
  • @RokoC.Buljan I think he means parentheses; i.e., "(100)" means -100. – Heretic Monkey Commented Feb 21, 2019 at 18:55
  • yes i mean the same ! – Aniruddhsingh Rathore Commented Feb 21, 2019 at 18:56
  • There is no built-in method for these. See How can I format numbers as dollars currency string in JavaScript? for some attempts. – Heretic Monkey Commented Feb 21, 2019 at 18:59
  • Just out of curiosity, when and why would one want to put a negative number into a string, positive and inside brackets? – Roko C. Buljan Commented Feb 21, 2019 at 19:00
 |  Show 1 more ment

3 Answers 3

Reset to default 6

You can use .toLocaleString function directly as follows:

function numberValueTransformation(value) {

    if (value === null || value === undefined) {
      return 'some special value like N/A';
    }

    const currencyLocale = this.UserPreferences.getCountryLocale().replace(/fr-FR/g, 'de-DE');
    const currencyCode = this.UserPreferences.getCountryCode();

    return Number(value).toLocaleString(currencyLocale, {
      style: 'currency',
      currency: currencyCode,
      currencySign: 'accounting', // this is the key
      minimumFractionDigits: 2
    });
}

Instead of directly returning the result, you can wire up the check yourself. Do the conversion on a positive number, if instead the original value is less then 0 then wrap in brackets.:

var absValue = Math.abs(value);
var returnString = Number(absValue).toLocaleString(currencyLocale, {
    // style: 'currency',
    currency: currencyCode,
    minimumFractionDigits: 2
});

return value < 0 ? '(' + returnString + ')' : returnString;

For this maybe look at the numbro.js library https://numbrojs./ There is a feature to format negative values in brackets as requested. The code would work like this

console.log(
numbro(-123456.78).formatCurrency({
    thousandSeparated: true,
    mantissa: 2,
    negative: "parenthesis" // This does what you want
}))
<script src="https://cdn.jsdelivr/npm/[email protected]/dist/numbro.min.js"></script>
There are lots of other formatting options too see https://numbrojs./format.html#currency

发布评论

评论列表(0)

  1. 暂无评论