String HEX to RGB

Monkey Forums/Monkey Programming/String HEX to RGB

SHiLLSiT(Posted 2013) [#1]
I know Monkey supports HEX literals, but what if I have a HEX value stored as a String? What would be the best way to convert the string HEX to RGB?


AdamRedwoods(Posted 2013) [#2]
http://monkeycoder.co.nz/Community/posts.php?topic=4058

or a look-up table if you need to do a lot of them.


SHiLLSiT(Posted 2013) [#3]
Perfect, thanks mate!