What is the best approach, simple string concatenation or string.format?
string.format
For instance, what is the better to use:
s:=v1+\' \'+v2
Here's a third option:
s:=Concat(V1,V2);