In a string, replace every occurrence of <0xYZ> with the character of hex value YZ. The < and > characters will be used only for that purpose, the string is guaranteed to be well formatted.
Example ('0' = 0x30): A<0x30>B
=> A0B
It's an easy task, but there are many solutions and I was wondering about the best way to do it.