165 - OZ String
OpenZeppelin Strings: String operations:
-
toString(uint256 value)
→string
: Converts a uint256 to its ASCII string decimal representation. -
toHexString(uint256 value)
→string
: Converts a uint256 to its ASCII string hexadecimal representation. -
toHexString(uint256 value, uint256 length)
→ string: Converts a uint256 to its ASCII string hexadecimal representation with fixed length.
- String Operations
- toString(value)
- uint256 -> ASCII String Dec
- toHexString(value)
- uint256 -> ASCII String Hex
- toHexString(value, length)
- ASCII String Hex, Fixed Length