BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ChaseLiu
Obsidian | Level 7

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
Super User

@ChaseLiu wrote:

It's because EG could not detect the encoding in my SAS program by default.

 


Which happens because your IDE does not supply the BOM that tells other software that the file is UTF coded. You might look if there's an option for that.

ChaseLiu
Obsidian | Level 7

@Kurt_Bremser You are right.Smiley Happy The editor save file in UTF-8 without BOM by default. Thanks for you advice! I think my confuse has been completely addressed.

Spoiler
 

.

 

NMad
Fluorite | Level 6
"Use of a BOM is neither required nor recommended for UTF-8, but may be encountered in contexts where UTF-8 data is converted from other encoding forms that use a BOM or where the BOM is used as a UTF-8 signature"
DumptyHumpty
Calcite | Level 5

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

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 19 replies
  • 6071 views
  • 5 likes
  • 7 in conversation