03-25-2013 10:13 AM - edited 03-25-2013 10:13 AM
Is there a way to create an empty string of arbitary length?
What I mean is
I have an integer as input
This integer tells the length of the string
An empty string (containing only 00h) with that length is the output
Solved! Go to Solution.
03-25-2013 10:17 AM
Create a U8 array (using Initialize Array with value 0) and feed it into Byte Array to String. You can also auto-index an empty string out of a for loop and wire the resulting array into a Concatenate function, which will convert it to a single string.