I am trying to work out the easiest way of converting ascii to hex on the fly.
I am writing an app which takes a string and converts it to hex before saving it in an xml file. One way I have of doing it is to hardcode the hex values into the application but that will take FAAARRRR too long and will basically make the app pointless.
There are various extensions that can get the ascii values of individual characters, and MMF2 has a built-in function to convert those to hex values - seems like you just need a fastloop to check each character, one at a time.