iphone - 如何将格式化的 nsstring 转换为 NSNumber 或删除格式?
<p><p>我有一个类似“1.23,45”的字符串,(德国/法国风格或其他风格)。
如何将格式删除为普通字符串或 nsnumber?
我只知道从数字转换为字符串。:(
谢谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>NSNumberFormatter *formatter = [ init];
;
;
NSLocale *locale = [ initWithLocaleIdentifier:@"en_US"];
;
NSString *formattedOutput = ]];
;
;
NSLog(@"%@", formattedOutput];
</code></pre>
<p>进一步将formattedString转换为数字</p>
<pre><code>NSNumber myNumber = ; //replace intValue by floatValue to get decimal output
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 如何将格式化的 nsstring 转换为 NSNumber 或删除格式?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/12599671/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/12599671/
</a>
</p>
页:
[1]