@animesh123 sure. Please mark my answer as the accepted solution if the code works for you.
The Compress Function keeps only digits from the string. 'kd' = 'keep digits'.
The Input Function converts the character string to numeric.
What numeric value do you want to extract?
Try this
data test;
string = 'a1b2c3df456';
newstring = input(compress(string, , 'kd'), 8.);
run;
@animesh123 sure. Please mark my answer as the accepted solution if the code works for you.
The Compress Function keeps only digits from the string. 'kd' = 'keep digits'.
The Input Function converts the character string to numeric.
What does _num_ mean here?
So you want to expand this logic to all numeric variables in your data step?
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.