I am trying to Read data from txt file where delimiter is © (copyright symbol).
The data fields in txt file have varied lengths. Any help with this would be highly appreciated.
Thanks
The photo you posted does not look like a text file. What type of file are you reading?
data want ;
infile 'myfile.txt' dsd dlm='©' truncover ;
length var1 8 varr $20 ;
input var1 var2 ;
run;
You can use any single-byte character as delimiter in an infile statement. So if it's the character 'a9'x from the ISO 8859-1 set, you can use it. If it's the UTF-8 character, you can't, and you will have to "manually" dissect the _infile_.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.