Simple program in Go that will filter data from Excel (xlsx) file based on passed keyword.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Stanislav Nikitin bdb6ff3bda Clarified app usage in README. 6 years ago
.gitignore Initial commit. 6 years ago
LICENSE Initial commit. 6 years ago
README.md Clarified app usage in README. 6 years ago
excelator.go Initial commit. 6 years ago

README.md

Excelator

Simple program in Go that will filter data from Excel file based on passed keyword.

It will take a good look thru whole xlsx file and produce file with filtered data.

Usage

Program takes two parameters:

  • -filename - path to file. Remember to quote it if it contains spaces!
  • -keyword - keyword to search for.

Excelator will iterate thru all filled lines and cells and search for a keyword. If it found a match - it will write this line to file filtered.xlsx which will be placed near binary (or in $PWD).