Given two lines
String1 = 'This is ' String2 = 'a mouse.'
To combine them you can use
String3 = String1.String2
or more flexible:
String3 = sprintf("%s%s", String1, String2)
type help string or help sprintf for more information on these two methods.
source share