You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extractions does not output carriage returns. After looking at an output file in a hex editor the reason is clear. It seems to determine line feeds perfectly fine but it only inserts the Line Feed character (0x0A) and not the carriage return character that a windows text file expects. (0x0D 0x0A)
So a better behavior would be to take 0x0D in an output string and replace the hex found with 0x0D 0x0A. Definitely increase usability.
The text was updated successfully, but these errors were encountered:
Extractions does not output carriage returns. After looking at an output file in a hex editor the reason is clear. It seems to determine line feeds perfectly fine but it only inserts the Line Feed character (0x0A) and not the carriage return character that a windows text file expects. (0x0D 0x0A)
So a better behavior would be to take 0x0D in an output string and replace the hex found with 0x0D 0x0A. Definitely increase usability.
The text was updated successfully, but these errors were encountered: