[][src]Crate fritz_guess

Strategies for guessing which separator occurs most often in a CSV file. Originally made to guess whether a CSV file uses the ; or , character as separator.

Part of the Fritz workbook toolset.

Structs

MostFrequentLineByLine

Decent effort guesser which implements guessing using a line-by-line winner takes all strategy. For a line, the winner is the separator which occurs most frequent. The overall winner is the separator which takes most wins.

Enums

Error

Traits

GuessSeparator