Thanks.
That works ok, but what if I wanted to append to an existing string $MyRes?
Will the code be something like:
#$MyStr contains some information
StrCpy $MyStr $MyStr$MyDelimiter # adds a space to existing string
StrCpy $MyStr $MyStr$NewDataToAdd
I tested this and my results ends up being the last added data. It does not append.