data test;
first='ipswich,England';
city=substr(first,1,7);
cc=city!!','!!'England';
run;
op is giving spaces b/w ipswich and england. why?
Basically because you haven't told it not to. CITY is created as 15 characters, the length of FIRST and treated as though that is the desired length.
Try either:
cc= strip(city)||','||'England';
or
cc= trim(left(city))||','||'England';
or
cc=cats(city, ',' , 'England');
or
cc=catx(',', city, 'England');
This article in the SAS Documention will help http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a001336069.htm .
Basically, the problem starts because you've not specified character lengths. SAS then picks the length based on the first value is sees for each variable you've used. "First" is set to 15, "City" copies this and is 15 too, while "CC" is set to 23 (i.e. 15 plus the length of ",England" (8) = 23).
To work for your example you should either set the character lengths, or explore using the "TRIM" function when appending character variables. (Actually you'll probably end up using both.)
Hope that helps!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.