not sure if this is what you are looking for, but:
you can concatinate them like this
str1 = "hi"
str2 = "bye"
str3 = "hello"
str4 = "goodbye"
wscript.echo str1+str2+str3+str4
output
hibuyhellogoodby
or you can replace chr(10) and chr(13). 10 and 13 are carriage returns.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.