BookmarkSubscribeRSS Feed
PRAVIN_JAIN
Calcite | Level 5

I have a flat file to read in SAS with delimiter '¬'. Before reading in SAS, i want to check no of columns in each row using unix command however it gives incorrect result.

 

Command used - awk -F'¬' '{print NF}' in_file.txt | uniq

 

Please suggest.

1 REPLY 1
Patrick
Opal | Level 21

@PRAVIN_JAIN wrote:

I have a flat file to read in SAS with delimiter '¬'. Before reading in SAS, i want to check no of columns in each row using unix command however it gives incorrect result.

 

Command used - awk -F'¬' '{print NF}' in_file.txt | uniq

 

Please suggest.


For Unix/Linux these things are really simple to Google. There is so much out there. Like here for example.

 

WHY do you want to do this? If it's just so that some lines have less columns (like when there is no data for the last few columns) then just use the truncover option in the infile statement and SAS will handle this nicely. 

 

You could also use SAS for counting the characters. Just a SAS datastep with an infile and input statement and then the countc() function

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1 reply
  • 372 views
  • 1 like
  • 2 in conversation