Summary: | ascii source reader is not robust enough | ||
---|---|---|---|
Product: | [Applications] kst | Reporter: | Grégoire Verlut <gregoire.verlut> |
Component: | general | Assignee: | kst |
Status: | RESOLVED NOT A BUG | ||
Severity: | normal | CC: | arwalker, wino |
Priority: | NOR | ||
Version: | 1.7.0 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Grégoire Verlut
2009-12-23 17:38:17 UTC
I see this with 1.7.1 from debian lenny and 1.9.1 from SVN, too. I have to pipe my csv files through sed 's/, /,/' to get them to read. At least part of the problem is that by default the '/' character is defined as a comment indicator, meaning that everything following it on a line will be treated as a comment (and so not read). Removing the '/' character from the list of comment indicators in the configure dialog fixes this part of the problem. There are no remaining problems once '/' is removed as a comment indicator. In order to correctly read the entries that appear as: , 1234, the custom delimiters should be change from "," to " ," i.e. add a space |