Crate xlsx_batch_reader

source ·
Expand description

An Excel/OpenDocument Spreadsheets file batch reader, in pure Rust. This crate supports Office 2007 or newer file formats(xlsx, xlsm, etc). The most obvious difference from other Excel file reading crates is that it does not read the whole file into memory, but read in batches. So that it can maintain low memory usage, especially when reading large files.

Modules§

Structs§

Enums§

Statics§

Functions§

  • Convert character based Excel cell column addresses to number. If you pass parameter D to this function, you will get 4
  • Convert number based Excel cell column addresses to character. If you pass parameter 4 to this function, you will get D
  • Convert numbers based Excel cell addresses to characters. If you pass parameter (2, 4) to this function, you will get D2.
  • Convert character based Excel cell addresses to numbers. If you pass parameter D2 to this function, you will get (2, 4)
  • check whether the cell is a merged cell. If it is the first cell in the merged area, return the size of the merged area. RowNum and ColNum start from 1.

Type Aliases§