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

Hello,

 

I am using the following code to write a text file;

 

DATA _NULL_;
SET HAVE;
FILE 'pathofthefile/nameofthefile.txt' encoding="utf-8";
IF =_N_=1 THEN PUT 'TITLE OF THE FILE';
RUN;

I check with notepad++ that the file is encoding in UTF-8 with BOM.

I need it to be encode in UTF-8 without BOM

 

Do know if it exists any option to achieve that .

 

Thank You.

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
Patrick
Opal | Level 21

@Hugo_B 

Add the following before your data _null_ step:

options nobomfile ;

Found here: https://communities.sas.com/t5/SAS-Data-Management/How-to-Remove-BOM-from-SAS-Output-in-csv/td-p/207... 

Hugo_B
Obsidian | Level 7

Great It worked. Thank you Patrick.

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 7490 views
  • 0 likes
  • 2 in conversation