Page 1 of 1

⎕CSV : how to change NOBOM to BOM ?

Posted: Sun Mar 24, 2019 12:45 pm
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

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

Posted: Mon Mar 25, 2019 8:37 am
by Veli-Matti
Hi,

      table ⎕CSV filename 'UTF-8-BOM'


should work
-wm