Skip to content

A Swift library to parse mathematical expressions into Decimal values

License

Notifications You must be signed in to change notification settings

jrosen081/MathParser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MathParser

CI Status Version License Platform

What it is:

MathParser is a library written in swift that will allow a user to parse a String.

What you can do with it:

  • Addition
  • Subtraction
  • Multiplication
  • Division
  • Exponents
  • Overload the operators.

How to use:

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

Public methods:

  • 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.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

MathParser is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'MathParser'

Author

jrosen081, [email protected]

License

MathParser is available under the MIT license. See the LICENSE file for more info.