@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?
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.