gpt4 book ai didi

objective-c - 将货币格式的字符串转换为普通字符串

转载 作者:搜寻专家 更新时间:2023-10-30 19:46:45 24 4
gpt4 key购买 nike

我有一个带有货币符号和货币格式的字符串......我想把它转换成普通的字符串..

我的代码是这样的..

-(NSString *)removeCurrency:(NSString *)str{


NSNumberFormatter *_currencyFormatter = [[NSNumberFormatter alloc] init];
[_currencyFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[_currencyFormatter setNegativeFormat:@"-¤#,##0.00"];

NSLog(@"\n With Currency : %@",str);
NSLog(@"\n Without Currency : %@",[_currencyFormatter numberFromString:str]);

return [NSString stringWithFormat:@"%@",[_currencyFormatter numberFromString:str]];
}

但是当我输入字符串 Rs 0.009 时,问题就出现了,它返回不同的值,但使用另一个数字时,它工作得很好......

最佳答案

为什么不在向其添加货币格式之前存储该值。通常,您只在显示之前添加货币格式,而不是为了存储。

关于objective-c - 将货币格式的字符串转换为普通字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7657834/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com