菜鸟教程小白 发表于 2022-12-13 08:48:45

ios - 如何将 double 值格式化为点后两位小数且分隔符为千位的字符串?


                                            <p><p>我在 Objective-C 中有一个 double 值,我需要将它的值放入标签中。
我应该如何将其格式化为点后两位小数且分隔符为千位的字符串?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用 <a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSNumberFormatter_Class/Reference/Reference.html" rel="noreferrer noopener nofollow">NSNumberFormatter</a> ,例如:</p>

<pre><code>NSNumberFormatter *formatter = [ init];
;

NSString *string = ];
// string is now &#34;1,234,567.89&#34;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何将 double 值格式化为点后两位小数且分隔符为千位的字符串?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7058600/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7058600/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何将 double 值格式化为点后两位小数且分隔符为千位的字符串?