File: TODO

package info (click to toggle)
libtext-recordparser-perl 1.6.5-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 440 kB
  • sloc: perl: 3,351; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-   Some way to control files with a variable number of columns, e.g.

    foo,bar,baz,quux
    flim,flam,flom

If I want the above parsed into just three fields, would I want:

    foo,bar,[baz,quux]
    flim,flam,[flom]

Or just:

    foo,bar,baz
    flim,flam,flom

How would I specify this in the API?