Archive: Can one add two strings?


Can one add two strings?
Can I add 2 strings into one?

"A" + "B" ; = "AB"


StrCpy $0 "$0$1"

Read the docs for more info.


a+b
; $0='A'
; $1='B'
StrCpy $0 '$0$1'
; $0='AB'