how do you format a number to currency when using React native EXPO?

前端 未结 5 1578
深忆病人
深忆病人 2020-12-16 10:45

how do I take a number like 10000 and have it output as $10,000.00?

I even had a problem with String.format(...) with a

5条回答
  •  心在旅途
    2020-12-16 11:13

    You can use this library react-number-format. It has these features

    1. Prefix, suffix and thousand separator.
    2. Custom format pattern.
    3. Masking.
    4. Custom formatting handler.
    5. Format number in an input or format as a simple text

    Sample usage

    
    

    Output : $2,456,981

提交回复
热议问题