• Stars
    star
    2
  • Language
    Julia
  • License
    Other
  • Created over 10 years ago
  • Updated about 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Labeled Tab Separated Values (LTSV) parser in Julia.

LTSV

Labeled Tab Separated Values (LTSV) parser in Julia.

Examples

import LTSV

while true
    line = readline(STDIN)
    if isempty(line)
        break
    end
    record = LTSV.parse_line(line)
    if haskey(record, "time")
        try
            println(record["time"])
        catch
            break
        end
    end
end