使用逗号时将String转换为double

时间:2015-08-12 15:02:44

标签: ios objective-c nsstring double nsformatter

我有一个UITextfield,它正在被来自数据库的数据填充。该值的格式为小数部分用逗号分隔。所以,结构就像1,250.50

我将数据保存在字符串中,当我尝试使用doubleValue方法将字符串转换为double或浮点数时。我得到1.这是我的代码。

NSString *price = self.priceField.text; //here price = 1,250.50
double priceInDouble = [price doubleValue];

这里我得到1而不是1250.50。

我想,问题是逗号,但我无法摆脱那个逗号,因为它来自数据库。任何人都可以帮我把这个字符串格式转换为double或float。

3 个答案:

答案 0 :(得分:8)

您可以使用这样的数字格式化程序;

NSString * price = @"1,250.50";
NSNumberFormatter * numberFormatter = [NSNumberFormatter new];

[numberFormatter setNumberStyle:NSNumberFormatterDecimalStyle];
[numberFormatter setGroupingSeparator:@","];
[numberFormatter setDecimalSeparator:@"."];

NSNumber * number = [numberFormatter numberFromString:price];

double priceInDouble = [number doubleValue];

答案 1 :(得分:3)

解决这个问题的方法就是删除逗号。虽然您最初从数据库中获取这些逗号,但您可以在转换之前删除它们。添加它作为从数据库获取数据并将其转换为双精度数据之间的额外步骤:

NSString *price = self.priceField.text;  //price is @"1,250.50"
NSString *priceWithoutCommas = [price stringByReplacingOccurrencesOfString:@"," withString:@""];  //price is @"1250.50"
double priceInDouble = [priceWithoutCommas doubleValue]; //price is 1250.50

答案 2 :(得分:1)

快捷键5

let price = priceField.text //price is @"1,250.50"

let priceWithoutCommas = price.replacingOccurrences(of: ",", with: "") //price is @"1250.50"

let priceInDouble = Double(priceWithoutCommas) ?? 0.0 //price is 1250.