BookmarkSubscribeRSS Feed
sandyming
Calcite | Level 5

I want to delete the same line from many SAS PROGRAMS. is there a easy way to do it?

Sandy

3 REPLIES 3
Tom
Super User Tom
Super User

What tools do you have? sed should be able to do.

Since they are SAS programs why not use SAS to do it?

data _null_;

   length infile outfile $200 ;

   infile '*.sas' filename=infile ;

   input ;

   outfile = cats(infile,'.new');

   file new filevar=outfile;

   if _infile_^='DELETE THIS LINE;' then put _infile_;

run;

ballardw
Super User

If you use Tom's approach make sure the length, the $200, actually covers the length of ALL lines in the files.

I know that programs really shouldn't have lines that long but occasional things like datalines may exceed that expectation.


Sudhakar_A
Calcite | Level 5

Can you explain in detail about your requirement with an example?

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 3 replies
  • 1009 views
  • 0 likes
  • 4 in conversation