Hi Chris,
Thanks for your great solution. It's working!
Just like you said, It's because EG could not detect the encoding in my SAS program by default.
@Kurt_Bremser You are right. The editor save file in UTF-8 without BOM by default. Thanks for you advice! I think my confuse has been completely addressed.
.
I had a related issue with thousands of *.sas files from external sources in UTF8 that were incorrectly handled by the EG due to the missing Byte Order Mark (BOM) in the files. Opening and saving them manually in EG with the correct encoding information was not an option.
I added the BOM programmatically which made EG detect the encoding correctly. Due to my personal preferences I coded it in linux bash. Powershell should look similiar.
echo -ne '\xEF\xBB\xBF' > prog_utf8_BOM.sas && cat prog_utf8.sas >> prog_utf8_BOM.sas && mv prog_utf8_BOM.sas prog_utf8.sas
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.