BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Suzy_Cat
Pyrite | Level 9

hi there,

 

I need identify if there is random non-numeric (may incl. Alphabet, symbols, etc.) value in a variable which is a text string.

 

is there a better way to do it? 

 

data _null_;

set test;

j=0;

do until(j=0);

j=notdigit(Var,j+1);

if j=0 then put +3 "That's all";

else do;

c=substr(Var,j,1);

put +3 j= c=;

end;

end;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

I don't think the looping is needed.

 

All you need is

 

if notdigit(var)>0 then ...   ;
--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

I don't think the looping is needed.

 

All you need is

 

if notdigit(var)>0 then ...   ;
--
Paige Miller
Suzy_Cat
Pyrite | Level 9

Hi Paige,

 

Thanks for your answer. I have tested and it worked 🙂  just not sure if it would pick up all the ones with random combination of symbols.

 

But it worked for my data.

 

Cheers

 

 

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 7201 views
  • 0 likes
  • 2 in conversation