deusvulture replied to your post
ānightpool replied to your photo āAs someone who keeps running into...ā
fwiw I feel like I pretty frequently see those kinds of errors in rtf and doc parsing (a profusion of Ćs is the classic example)
although maybe that's a different thing
TheĀ Ć thing in particular is a symptom of reading text in one character encoding as if itās in another character encoding, see here.
Character encoding problems are common, but theyāre at a lower level than what Iām talking about -- the level ofĀ āwhat sequence of characters do these bytes even representā rather thanĀ āgiven this sequence of characters, which ones are special control sequences.āĀ So they have the potentialĀ to come up in any kind of text processing, even in the hypothetical utopia where I have my ideal tabular data file format.
The direct analogue to the problems I have with CSVs would be something like interpreting an RTF as having lots of bold text because I typedĀ ā\bā somewhere in it, or conversely interpreting actual bold text in an RTF as regular text surrounded with ā\bā and related sequences.Ā Or the like with margin sizes, other layout information, etc.










