How do I join two text strings using CAL?
Solution:
To join text strings, you use the combination of SetVal and Append, like this: setval 1 "hello"
append on
setval 1 " there"
msg $v1
[ shows "hello there"]
How do I join two text strings using CAL?
To join text strings, you use the combination of SetVal and Append, like this: setval 1 "hello"
append on
setval 1 " there"
msg $v1
[ shows "hello there"]
Comments
0 comments
Article is closed for comments.