Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
/efpPublic

Go Language Microsoft Excel™ Formula Parser

License

NotificationsYou must be signed in to change notification settings

xuri/efp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Build StatusCode CoverageGo Report Cardgo.devLicensesFOSSA Status

Using EFP (Excel Formula Parser) you can get an Abstract Syntax Tree (AST) from Excel formula.

Installation

go get github.com/xuri/efp

Example

package mainimport"github.com/xuri/efp"funcmain() {ps:=efp.ExcelParser()ps.Parse("=SUM(A3+B9*2)/2")println(ps.PrettyPrint())}

Get AST

SUM <Function> <Start>    A3 <Operand> <Range>    + <OperatorInfix> <Math>    B9 <Operand> <Range>    * <OperatorInfix> <Math>    2 <Operand> <Number> <Function> <Stop>/ <OperatorInfix> <Math>2 <Operand> <Number>

Contributing

Contributions are welcome! Open a pull request to fix a bug, or open an issue to discuss a new feature or change.

Credits

EFP (Excel Formula Parser) is a Go language port of E. W. Bachtal's Excel formula parser.

Licenses

This program is under the terms of the BSD 3-Clause License. Seehttps://opensource.org/licenses/BSD-3-Clause.

FOSSA Status


[8]ページ先頭

©2009-2025 Movatter.jp