Trying to extract only characters from a column, i.e.
JIM325612
SARAH651291
Each has 6 digits behind them but the amount of characters vary. How do I just pull the characters using 'SUBSTR' or something similar?
want=compress(your_variable,,'d');
want=compress(your_variable,,'d');
data h;
input var $15.;
datalines;
JIM325612
SARAH651291
;
data want;
set h;
want=compress(var,,'d');
run;
Thank you so much! Worked perfect!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.