When I subscribed the community and there is a new topic, I got the email with contents of the topic. But the email is a little hard to read at browser-based email. Would you like to enhance the email format?
... View more
The below datastep code can achieve what you want. data name1; length a_new $ 30; set name; do ii=1 to length(a); if ii<length(a) then a_new=trim(a_new)||substr(a,ii,1)||"*"; else a_new=trim(a_new)||substr(a,ii,1); end; drop ii; run;
... View more