
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
github.com/darenliang/go-math-eval
A simple math expression evaluator written in Go using Shunting Yard and Reverse Polish.
To install:
go get github.com/darenliang/gomatheval
Evaluating expressions
package main
import (
"fmt"
"github.com/darenliang/gomatheval"
"math"
)
func main() {
fmt.Println(gomatheval.EvalExpression(fmt.Sprintf("-(3+(sin(%v/2))^2)/4", math.Pi)))
// outputs 1
}
Command-Line Application
package main
import (
"flag"
"fmt"
"github.com/darenliang/gomatheval"
)
func main() {
optionPtr := flag.String("op", "e", "Select processing option.\n" +
"e: Evaluate expression\n" +
"p: Process to Reverse Polish Notation\n" +
"t: Tokenize expression\n")
expressionPtr := flag.String("exp", "", "Expression string to be processed")
flag.Parse()
switch *optionPtr {
case "t":
fmt.Println(gomatheval.SanitizeExpression(*expressionPtr))
case "p":
fmt.Println(gomatheval.ParseRPN(gomatheval.SanitizeExpression(*expressionPtr)))
default:
fmt.Println(gomatheval.EvalExpression(*expressionPtr))
}
}
+ (addition)
, - (subtraction)
, * (multiplication)
, / (division)
, % (modulo)
, ^ (power)
.sin (sine)
, cos (cosine)
, tan (tangent)
, ln (natural logarithm)
, lg (base 2 logarithm)
, log (logarithm with variable base)
. More operators coming soon...Every expression is composed of three kinds of tokens:
By tokenizing an expression, we can get the individual elements that make up the expression:
-(3+(sin(3.141592653589793/2))^2)/4
=> - ( 3 + ( sin ( 3.141592653589793 / 2 ) ) ^ 2 ) / 4
The tokenized expression is then sanitized and unary operators are converted to unique operators.
- ( 3 + ( sin ( 3.141592653589793 / 2 ) ) ^ 2 ) / 4
=> -u ( 3 + ( sin ( 3.141592653589793 / 2 ) ) ^ 2 ) / 4
By using the Shunting Yard Algorithm we can convert this infix notation into postfix notation (also known as Reverse Polish notation).
-u ( 3 + ( sin ( 3.141592653589793 / 2 ) ) ^ 2 ) / 4
=> 3 3.141592653589793 2 / sin 2 ^ + -u 4 /
By evaluating the postfix notation tokens, we can obtain a final value.
3 3.141592653589793 2 / sin 2 ^ + -u 4 /
=> -1
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.