Re: [ANN] DDMathParser

2010-11-29 Thread Florent Pillet
Great work from Dave! I had been using Graham's GCMathParser but we needed something more powerful, and I stumbled upon muParser (http://muparser.sourceforge.net/) which is quite excellent, albeit much more complex en Dave's or Graham's solution (I had to write my own thin wrapper around it, to

Re: [ANN] DDMathParser

2010-11-22 Thread Carter Allen
Hey Dave, I'm currently working on an app that loads expressions from plugin-like files, and currently we're having the expressions be written in JavaScript syntax and then using a WebView to evaluate the JavaScript. Obviously, this is less than ideal. I'm wondering if you think that DDMathPars

Re: [ANN] DDMathParser

2010-11-22 Thread Graham Cox
Ah, nice job! It's about time my crusty old code was updated but I'm just too busy... --Graham On 23/11/2010, at 3:41 PM, Dave DeLong wrote: > Hi everyone, > > I thought it'd be fun to write a mathematical expression evaluator, a la > Graham Cox's GCMathParser, but one that was extensible.

[ANN] DDMathParser

2010-11-22 Thread Dave DeLong
Hi everyone, I thought it'd be fun to write a mathematical expression evaluator, a la Graham Cox's GCMathParser, but one that was extensible. So I dusted off my parsing skills and wrote DDMathParser: https://github.com/davedelong/DDMathParser It's an NSString => NSNumber expression evaluator,