Hi,
I hate to say this...but how do I append two string together when I don't know their size?
Sorry... :/
Kepler
Printable View
Hi,
I hate to say this...but how do I append two string together when I don't know their size?
Sorry... :/
Kepler
there are so many different ways. The most basic way to append or concatanate two strings is using "+" operator.
s += string("Hello world, ") + string("nice to see you, ") + string("or not.");