Hello,
From the below character_variable I only want to pick the ones with 5 digits:
I want to eliminate the rest. Do I use Substring??
CODE_VARIABLE
10351
101
11223040
32421
10449900
Length() function returns the length of a string.
Length() function returns the length of a string.
data Want;
input Code_Variable $;
if length(Code_Variable) eq 5;
cards;
10351
101
11223040
32421
10449900
;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.