Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text file that is a publication with tables that I need but also a bunch of other stuff I don't need including paragraphs of text. How would I be able to pull out just the tables I need into a sas dataset?

share|improve this question
I don't know SAS, but updating your question to include how the file is delimited and what identifies the "good" portions of the text file will help people answer. R has a general function named scan which I'd usually use for general hacking like this: rss.acs.unt.edu/Rdoc/library/base/html/scan.html. Maybe you can read up on what scan does, and then search for the equivalent functionality in SAS... – Chase Apr 24 '12 at 21:17
Sometimes just copy & pasting the content into a good text editor (for example Notepad++ on Windows, TextMate on Mac) is the most practical way to proceed. With a series of search&replace operations, make the file into a tab-separated file which you can then paste into Excel or save as is and import in SAS. – dominic999 Apr 25 '12 at 17:05

migrated from stats.stackexchange.com Aug 14 '12 at 20:34

1 Answer

You could input each line from the text file as one very large character var. Using PRXMATCH, you can test this line using a Regular Expression. Depending on the makeup of the text file you can then conditionally control the creation of the dataset based on the Regex matches.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.