⎕CSV : how to change NOBOM to BOM ?

General APL language issues
Post Reply
Yves
Posts: 39
Joined: Mon Nov 30, 2015 11:33 am

⎕CSV : how to change NOBOM to BOM ?

Post by Yves »

Dear All,
i have data with unicode character.
Data are in csv format, so, i write file with ⎕CSV.

but i don't read correctly this file on another windows platform.
i verify content :
      2⊃ ⎕nget path,filename
UTF-8-NOBOM

i would like to change NOBOM to BOM.
is there a parameter of ⎕CSV ?
is it possible with equivalent of ⎕nget ?

Best Regards,
Yves
Veli-Matti
Posts: 94
Joined: Sat Nov 28, 2009 3:12 pm

Re: ⎕CSV : how to change NOBOM to BOM ?

Post by Veli-Matti »

Hi,

      table ⎕CSV filename 'UTF-8-BOM'


should work
-wm
Post Reply