tsv2csv alternatives and similar packages
Based on the "Text" category.
Alternatively, view tsv2csv alternatives based on common mentions on social networks and blogs.
-
pandoc-citeproc
Library and executable for using citeproc with pandoc -
scholdoc
Fork of Pandoc for the implementation of a ScholarlyMarkdown parser -
blaze-from-html
A blazingly fast HTML combinator library for Haskell. -
prettyprinter
A modern, extensible and well-documented prettyprinter. -
skylighting
A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions -
commonmark
Pure Haskell commonmark parsing library, designed to be flexible and extensible -
regex-genex
Given a list of regexes, generate all possible strings that matches all of them. -
regex-applicative
Regex-based parsing with an applicative interface -
pandoc-csv2table
A Pandoc filter that renders CSV as Pandoc Markdown Tables. -
servant-checked-exceptions
type-level errors for Servant APIs. -
pretty-show
Tools for working with derived Show instances in Haskell. -
double-conversion
A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library. -
text-format
A Haskell text formatting library optimized for ease of use and high performance. -
diagrams-pandoc
A pandoc filter to express diagrams inline using the haskell EDSL diagrams. -
hyphenation
Knuth-Liang Hyphenation for Haskell based on TeX hyphenation files
Collect and Analyze Billions of Data Points in Real Time
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of tsv2csv or a related project?
README
tsv2csv 
Convert tab-delimited text to Excel-style comma-delimited
According to some, Excel does it right. Some disagree. See http://superuser.com/questions/302334/true-difference-between-excel-csv-and-standard-csv.
This program follows the rules mentioned in the linked page:
If a cell contains a comma, a newline, or a double-quote, surround it in double-quotes. Otherwise, output it as is.
Build
Cabal:
cabal sandbox init
cabal install --dependencies-only
./install.sh
The result is tsv2csv
in the $HOME/.cabal/bin
directory,
which should be on your path.
which tsv2csv | xargs ls -l
Stack:
make install
Run
tsv2csv < input.tsv > output.csv
The intention is to compose a pipeline such as
sed 's/NOTE_TYPE_ID/14/g' db/stock-target-vs-downside.sql | ssh central@central '~/bin/mys devh' | tsv2csv
To run tests, use:
cabal build && echo runTests | cabal repl