in reply to Re^2: Extract data from non-standard .xml file
in thread Extract data from non-standard .xml file
fffe is BOM for UTF-16LE, its the character right before "<"$ perl -MEncode -MData::Dump - print join q/ /, split/(....)/, q{00}.unpack q{H*}, encode( q{UTF-16LE}, qq{\x{FEFF}<Root>} ); __END__ 00ff fe3c 0052 006f 006f 0074 003e 00
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Extract data from non-standard .xml file (utf bom)
by Anonymous Monk on Jan 21, 2015 at 21:36 UTC | |
|
Re^4: Extract data from non-standard .xml file
by BillKSmith (Monsignor) on Jan 25, 2015 at 02:39 UTC |