Reading text files that contain French characters


To make sure that French characters in text files are displayed when they are read into SAS, you need to specify the ENCODING="UTF-8" option the INFILE statement, as follows:

infile 'c:\test.txt' dlm=',' encoding="utf-8" dsd firstobs=2;