How to use readText to read utf16 file?

Adam D. Ruppe via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Mon Nov 16 19:00:16 PST 2015


On Tuesday, 17 November 2015 at 02:50:44 UTC, Domain wrote:
> Thanks! But how to remove BOM? Slice the result myself?

Yeah. Do something like if(result.length &&result[0] == bom) { 
result = result[1..$]; } and you'll have it.


More information about the Digitalmars-d-learn mailing list