I need to convert an unsigned integer to a string representation with base 36. Before Rust 1.7, it was possible with std::fmt::Radix
. Is there a way to do that in stable Rust?
Asked
Active
Viewed 685 times
2

Shepmaster
- 388,571
- 95
- 1,107
- 1,366

bitick
- 29
- 1
-
2Well yes, same way as before 1.7 - with [char::from_digit](https://doc.rust-lang.org/stable/std/char/fn.from_digit.html). – ljedrz Feb 20 '18 at 21:37
-
1suggest adding code to the question to make it better/easier to answer. – Jess Bowers Feb 21 '18 at 16:19