Hey people! I'm working on an text-ASCII converter, and I have figured out most of the code on my own, but I am having some problems. For example, whenever I use the Len, Chr, and Mid functions to search for two-character clumps in the string and convert them, it is including ALL of the clumps, even the ones in the middle.
For example, let's say I need to convert this ASCII string into characters:
678075
In character form, it means "CPK". However, when I use my converter, it translates to:
CNP?K|
After toying with the converter, I realized something. The converter read the string differently than I wanted it to. Instead of reading "67,80,75", it read "67,78,80,07,75,5". I thought I could use the replace function to get rid of every other character in the string. Can someone help me achieve this?
Thanks in advance!