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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 230 views
  • 1 like
  • 2 in conversation