From 087551bed12d2fab7cb5bdd1ea352f893ef46f43 Mon Sep 17 00:00:00 2001 From: Daniel Medeiros Date: Tue, 1 Oct 2019 05:13:41 -0300 Subject: [PATCH] Improve README text formatting --- README.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ccc6f70..49b7599 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,17 @@ columns) and positional (starting at zero) style. For instance: -- A is equivalent to position 0 -- K is equivalent to position 10 -- AA is equivalent to position 26 -- AZ is equivalent to position 51 +- "A" is equivalent to position 0 +- "K" is equivalent to position 10 +- "AA" is equivalent to position 26 +- "AZ" is equivalent to position 51 + +The other direction is also covered: + +- 25 is equivalent to code "Z" +- 9 is equivalent to code "J" +- 703 is equivalent to code "AAB" +- 27 is equivalent to code "AB" Useful when working between Excel/CSV and Java positional referencing. @@ -30,9 +37,11 @@ $ java -jar a1-positional-style-converter-0.1.0-standalone.jar [args] ## Examples $ java -jar a1-positional-style-converter-0.1.0-standalone.jar a1 C + returns 2 $ java -jar a1-positional-style-converter-0.1.0-standalone.jar pos 10 + returns K ## License