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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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
  • 2 replies
  • 6374 views
  • 0 likes
  • 2 in conversation