我想使用正则表达式来查找和替换字符串。在我的方案{3}中,{2}是UITextField标记值。基于标记值,我想替换相应的文本字段值并使用NSExpression计算字符串值。
示例输入字符串:
NSString *cumputedValue = @"{3}*0.42/({2}/100)^2";
注意:textFields是基于JSON响应动态创建的。
答案 0 :(得分:1)
我得到了这个问题的答案。这里computedString包含的值为" {3} * 0.42 /({2} / 100)^ 2"。
- (NSString *)autoCalculationField: (NSString *)computedString {
NSString *computedStringFormula = [NSString stringWithFormat:@"%@",computedString];
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"\\{(\\d+)\\}"
options:0
error:nil];
NSArray *matches = [regex matchesInString:computedStringFormula
options:0
range:NSMakeRange(0, computedStringFormula.length)];
NSString *expressionStr = computedStringFormula;
for (NSTextCheckingResult *r in matches)
{
NSRange numberRange = [r rangeAtIndex:1];
NSString *newString = [NSString stringWithFormat:@"%.2f",[self getInputFieldValue:[computedStringFormula substringWithRange:numberRange]]];
expressionStr = [expressionStr stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"{%@}",[computedStringFormula substringWithRange:numberRange]] withString:newString];
}
NSExpression *expression = [NSExpression expressionWithFormat:expressionStr];
return [expression expressionValueWithObject:nil context:nil];
}
- (float)getInputFieldValue: (NSString *)tagValue {
UITextField *tempTextFd = (UITextField *)[self.view viewWithTag:[tagValue intValue]];
return [tempTextFd.text floatValue];
}
答案 1 :(得分:0)
您可以使用它们所代表的值将textField标记保存在NSDictionary中。
之后使用stringByReplacingOccurrencesOfString
替换您希望的值。
这样的事情:
for (NSString *key in dict) {
cumputedValue = [cumputedValue stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"{@%}", key] withString:[NSString stringWithFormat:@"%@", dict objectForKey:@key]];
}
这样您可以更换值 p>