Importing a Polish Symbol File into SAS

I have a csv with polish characters, but when I import into SAS some polish characters are replaced with ?? or any other random variable. How should I do it. I have a list of all possible Polish characters, and I don't mind replacing him with an English counterpart.

+3


source to share


1 answer


You need to set the appropriate file encoding in the instruction infile

, eg. encoding="UTF-8"

...



SAS Documentation> http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000146932.htm http://support.sas.com/documentation/cdl/en/ nlsref / 61893 / HTML / default / viewer.htm # a002610945.htm

+1


source







All Articles