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

I have one variable in a dataset that include letters, numbers and special characters. Is there way I can screen out observations with ONLY letters, ONLY numbers, and ONLY special characters.

1 ACCEPTED SOLUTION

Accepted Solutions
RaviKommuri
Fluorite | Level 6

I am presenting some simple code here, You can modify as per your exact requirement!!!

data have;                                                   

Input name $;                                                

datalines;                                                   

RAVI                                                         

1234                                                         

HARI                                                         

5678                                                         

%$#@                                                         

;                                                            

data want;                                                   

set have;                                                   

if verify(trim(left(name)),'0123456789')=0 then x = 'N';     

else if verify(trim(left(name)),'!@#$%^&*()')=0 then x = 'S';

else x = 'C';                                                

Result :

Obs    name    x

                

1     RAVI    C

2     1234    N

3     HARI    C

4     5678    N

5     % #     S

View solution in original post

3 REPLIES 3
RaviKommuri
Fluorite | Level 6

I am presenting some simple code here, You can modify as per your exact requirement!!!

data have;                                                   

Input name $;                                                

datalines;                                                   

RAVI                                                         

1234                                                         

HARI                                                         

5678                                                         

%$#@                                                         

;                                                            

data want;                                                   

set have;                                                   

if verify(trim(left(name)),'0123456789')=0 then x = 'N';     

else if verify(trim(left(name)),'!@#$%^&*()')=0 then x = 'S';

else x = 'C';                                                

Result :

Obs    name    x

                

1     RAVI    C

2     1234    N

3     HARI    C

4     5678    N

5     % #     S

Peter_C
Rhodochrosite | Level 12

See the functions

ANYALPHA

NOTALPHA

ANYDIGIT

NOTDIGIT

ANYCNTRL

NOTCNTRL

Loko
Barite | Level 11

Hello,

One solution below:

data have;
length b $ 7 ;
infile datalines truncover;
input a $200.;

if length(compress(a,,'ad')) gt 1 then b="Special";
else if length(compress(a,,'d')) gt 1 then b="Letters";
  else b="Digits";
datalines;
sdijgh68%#$kjs
436346
gsgs
#$%&
eyeryt547&&
GtreUI
;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1077 views
  • 6 likes
  • 4 in conversation