本文介绍了XCode如何使用内部带有X表达式的String公式求值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将字符串公式计算为浮点型,但是我找不到解决方案.这是一个例子.我需要以此方式计算大约200个公式.
I'm tring to evaluate a string formula to a float but, I cannot find a solution. Here is an example. I need to calculate about 200 formulas in this way.
- NSString *Formula;
- Float *Result;
- Float *x
- x = 12;
- Formula = @"12.845*x+(-0.505940)";
结果=评估/计算(公式);
然后,我将使用Result作为公式的结果. ->结果= @"12.845 * x +(-0.505940)";
Then I'll use Result as a result from formula. --> Result = @"12.845*x+(-0.505940)";
推荐答案
您可以使用NSExpression
:
NSString *formula = @"12.845*x+(-0.505940)";
float x = 12.0;
NSExpression *expr = [NSExpression expressionWithFormat:formula];
NSDictionary *object = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithFloat:x], @"x", nil];
float result = [[expr expressionValueWithObject:object context:nil] floatValue];
NSLog(@"%f", result);
// Output: 153.634064
即使对于某些功能(例如sqrt
,exp
,...),此功能也可以使用....有关支持的功能列表,请参见NSExpression
文档.
This works even with some functions such as sqrt
, exp
, ... See the NSExpression
documentation for a list of supported function.
这篇关于XCode如何使用内部带有X表达式的String公式求值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!