I have to evaluate the following value in NSExpression.Please help me.
let calculateExpression = NSExpression(format: "6(9*9)")
if let calculateConvertedValue = calculateExpression.expressionValueWithObject(nil, context: nil) as? NSNumber {
outputValue = calculateConvertedValue.stringValue
print("Output",outputValue)
}