#convert #numbers #column #label #string #aa #0-based

xcolabel

Convert between column label to 0-based number

2 unstable releases

0.2.0 Aug 17, 2023
0.1.0 Aug 16, 2023

#41 in #column

27 downloads per month

MIT license

14KB
331 lines

xcolabel

Convert between column label to 0-based number.

xcolabel converts between 0-based numbers and column labels of spreadsheet software. For example, "A" becomes 0. "AA" becomes 26. It also converts tuples of the form (row, column) into strings like "C2".

Status

xcolabel is a pure Rust library. Everything except TryFromCellStr has been implemented.

Examples

use xcolabel::ToCellString;

assert_eq!((4, 2).to_cell_string(), "C5"); // value is 0-based (row, column)

lib.rs:

xcolabel

Convert between column label to 0-based number.

xcolabel converts between 0-based numbers and column labels of spreadsheet software. For example, "A" becomes 0. "AA" becomes 26. It also converts tuples of the form (row, column) into strings like "C2".

Status

xcolabel is a pure Rust library. Everything except TryFromCellStr has been implemented.

Examples

use xcolabel::ToCellString;

assert_eq!((4u32, 2u32).to_cell_string(), "C5"); // value is 0-based (row, column)

Dependencies

~470KB