Skip to content

v1.0.0

Compare
Choose a tag to compare
@llucenic llucenic released this 03 Jan 19:20
· 3 commits to master since this release

Initial version of the plugin with two conversion pipeline functions:

  • hex2dec(string) : Long - returns decimal representation of a string containing hexadecimal digits. It effectively converts hexadecimal string notation to numeric representation. Example: hex2dec("000085") == 133
  • dec2hex(long) : String - returns hexadecimal lower case string representation of the given number. No prefix or leading zeros.