Computing system based on the number 36
Find a file
Arnas Udovic c3854fac43
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
v4
2025-01-06 21:37:40 +02:00
.drone.yml Add '.drone.yml' 2022-08-08 05:25:48 +00:00
.gitignore copy from github 2021-05-11 23:21:06 +03:00
abcex.go support 36 and 64 base 2025-01-06 20:57:22 +02:00
abcex_test.go support 36 and 64 base 2025-01-06 20:57:22 +02:00
CHANGELOG update README and CHANGELOG 2025-01-06 21:06:37 +02:00
go.mod v4 2025-01-06 21:37:40 +02:00
README.md update README and CHANGELOG 2025-01-06 21:06:37 +02:00

abcex

Build Status

Computing system based on the number 62 or 36

Usage

Encode(int, int) -> string - convert number into string based on given base.

Decode(string, int) -> int - convert from encoded string into number based on given base.

Convert(string, int, int) -> string - convert encoded string from one base to another.

History

Version 1 - based on 32: number and case insensitive letters

Version 2 - failed release

Version 3 - based on 62: number and case sensitive letters

Version 4 - support both versions, based on 62 and 32