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 your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.