I need to convert an array of hexadecimal data into text (ASCII) format. My hexadecimal data is in the group of 8 bits, and I need to remove the spaces and need to get Textual information.
For eg. the hexadecimal data is as follows: 48454c4c 4f574f52 4c44
Its equivalent Text is HELLOWORLD
I have tried coding, but I could only achieve to convert a string of hex data 48454c4c4f574f524c44 (Without spaces) into text.
Kindly suggest and pls help me to sort it out.