02-09-2012 05:56 AM - edited 02-09-2012 05:58 AM
Take the hex string and using the conversion function turn that into an array of U8s. Wire that array to the function to format a number into a 2-digit hex-represented string. The result is an array of strings. Wire that array to the input of a string concatenator. The output will be all the elements appended into one long string.
Mike...
02-09-2012 06:05 AM
Yes, now it is working!! Thank you 🙂
02-09-2012 06:21 AM
Hello,
One more thing to be added to my VI is adding leading zeros for example:
When I write: 000A 3500 05DC
The result becomes: 0A3505DC
Is there any easy way to add these zeros for better display?
Thank you...
02-09-2012 10:43 AM
Yes: set the Width input of the string-to-hexadecimal conversion to 2, which will force at least two characters per value.
Remove the Decimate Array function. You can connect the array of strings directly to "Concatenate Strings."
02-09-2012 11:46 AM
Thank you, it is working perfectly :).