Guest User

Untitled

a guest
Feb 16th, 2019
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. data aa;
  2. length a b $3;
  3. a = 'FA';
  4. b = '1';
  5. a = a || b;
  6. run;
  7.  
  8. a = "FA " || "1 "
  9.  
  10. a = trim(left(a))||left(b);
  11.  
  12. a = cats(a,b);
Add Comment
Please, Sign In to add comment