MathParser is a library written in swift that will allow a user to parse a String.
- Addition
- Subtraction
- Multiplication
- Division
- Exponents
- Overload the operators.
Here is an example of how to use the library.
let expr = Parser.parse(string: "1 + 2") // Will return an expression that can be evaluated.
let exprValue = expr?.evaluate() // Evaluates the expression (will be 3 in this example)
To overload operators (this can be done if wanted):
Operators.addOp = ">"
let ans = Parser.parse(string: "1 > 2")?.evaluate() // This will evaluate to 3 with the new operator
- Parser.parse
- This returns an Optional Expression. This will return nil if the String is unparseable.
- Expression.evaluate
- This returns an Optional Decimal. This will only return nil if there is a division by 0.
To run the example project, clone the repo, and run pod install
from the Example directory first.
MathParser is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MathParser'
jrosen081, [email protected]
MathParser is available under the MIT license. See the LICENSE file for more info.