I want to ask how to transform data:
x(num) s(str)
to:
If it helps, my short words have a fixed length (3) [+ possibly comma and blank and next 3].I will be grateful for help.A
data have; input a s $30.; cards; 5 aaa 10 aab, aac 7 aad 8 bbb, ccc, ccd 3 xxx ; data want; set have; length new_s $30; do _n_=1 to countw(s,','); new_s=strip(scan(s,_n_,',')); output; end; run;
View solution in original post
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.