RosettaCodeData/Task/String-concatenation/SAS/string-concatenation.sas

10 lines
152 B
SAS
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
data _null_;
a="Hello,";
b="World!";
c=a !! " " !! b;
put c;
2013-10-27 22:24:23 +00:00
*Alternative using the catx function;
c=catx (" ", a, b);
put c;
2013-04-11 01:07:29 -07:00
run;