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

warm greetings to all.

Can anyone help tell me how to read a text file with following format if there are 3 varibles: name age & city.

Text file : 

 

Rocky26network

Rosy54paris

Alberter28Portugal

 

version im using is latest university edition !

 

Thanks & Regards
Atul 

1 ACCEPTED SOLUTION

Accepted Solutions
andreas_lds
Jade | Level 19

This is a very ugly data-format, but can be handled by using a regular expression:

 

data want;
   length rx 8
      Name $ 20 
      Age 8 
      City $ 100
   ;
   retain rx;
   drop rx;

   if _n_ = 1 then do;
      rx = prxparse('/([a-z]+)(\d+)([a-z]+)/i');
   end;
   

   input;

   if prxmatch(rx, trim(_infile_)) then do;
      Name = prxposn(rx, 1, trim(_infile_));
      Age = input(prxposn(rx, 2, trim(_infile_)), best.);
      City = prxposn(rx, 3, trim(_infile_));
   end;
   

datalines;
Rocky26network
Rosy54paris
Alberter28Portugal
;
run;

View solution in original post

4 REPLIES 4
Attyslogin
Obsidian | Level 7

warm greetings to all.

Can anyone help tell me how to read a text file with following format if there are 3 varibles: name age & city.

Text file : 

 

Rocky26network

Rosy54paris

Alberter28Portugal

 

Thanks & Regards
Atul 

andreas_lds
Jade | Level 19

This is a very ugly data-format, but can be handled by using a regular expression:

 

data want;
   length rx 8
      Name $ 20 
      Age 8 
      City $ 100
   ;
   retain rx;
   drop rx;

   if _n_ = 1 then do;
      rx = prxparse('/([a-z]+)(\d+)([a-z]+)/i');
   end;
   

   input;

   if prxmatch(rx, trim(_infile_)) then do;
      Name = prxposn(rx, 1, trim(_infile_));
      Age = input(prxposn(rx, 2, trim(_infile_)), best.);
      City = prxposn(rx, 3, trim(_infile_));
   end;
   

datalines;
Rocky26network
Rosy54paris
Alberter28Portugal
;
run;
Ksharp
Super User
data want;
length Name City $ 80;
input;
      Name = scan(_infile_,1,,'ka');
      Age = input(scan(_infile_,1,,'kd'), best.);
      City = scan(_infile_,2,,'ka');
datalines;
Rocky26network
Rosy54paris
Alberter28Portugal
;
run;
RW9
Diamond | Level 26 RW9
Diamond | Level 26

You may want to consider why the data is in that format in the first place, it isn't a good setup for a variety of reasons.  

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

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
  • 4 replies
  • 1792 views
  • 2 likes
  • 4 in conversation