How would I copy/convert a string containing an ascii representation of hex values in to a byte array containing the actual hex values? For example, I have a variable containing the hex values delimited by spaces (I can change the delimiter):
myString = "24 01 66 09 13 2F 1E 00 00 4E"
I want to put those values into a byte array:
Dim myByteArr(9) as Byte