May 15, 2001 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 I would like to merge two different string, say "abc" + "123" to "abc123", how can I make it? Regards.
I would like to merge two different string, say "abc" + "123" to "abc123", how can I make it? Regards.
May 16, 2001 #2 CorporateRobot Programmer Joined Apr 25, 2001 Messages 24 Location US 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. . . Upvote 0 Downvote
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. . .