https://bugs.documentfoundation.org/show_bug.cgi?id=98965

--- Comment #5 from freeseek <[email protected]> ---
Apparently 28 ASCII control characters cause the conversion to xlsx to fail,
that is, all control characters with the exception of \x00, \x09, \x0A, and
\x0D, corresponding to \0, \t, \n, and \r. The following bash script shows that
the xlsx file generated by localc is not well-formed due to an invalid token:

for c in {0,1}{{0..9},{A..F}}; do
  echo -en "\\\\x$c\t"
  echo -en "abcde \x$c vwxyz" > test.csv
  localc --convert-to xlsx test.csv > /dev/null
  xlsx2csv test.xlsx 2>&1 | tail -n1
done

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to