Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to merge two strings?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I would like to merge two different string, say "abc" + "123" to "abc123", how can I make it?

Regards.
 
You can combine strings in a calc icon using the caret symbol (^) as follows:

string1:="abc"
string2:="123"
string3:=string1^string2

-- the value of string3 is now
"abc123"

Let me know if you need anything else. . .
:)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top