You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this section, you should probably put somewhere that many of these examples use fields that are specifically tab-separated, as - unless I'm very confused - fields can be separated by other things. :-)
E. g.
perl6 -ne 'say [+] .split("\t")'
could just as easily be
perl6 -ne 'say [+] .split(",")'
for a CSV file rather than a TSV file.
The text was updated successfully, but these errors were encountered:
Just noticed that one of the examples does, in fact, split on comma, and specifically says so. Probably better, IMO, to make a general statement that the separator can be whatever it needs to be and take each example as being able to use a different separator.
In this section, you should probably put somewhere that many of these examples use fields that are specifically tab-separated, as - unless I'm very confused - fields can be separated by other things. :-)
E. g.
perl6 -ne 'say [+] .split("\t")'
could just as easily be
perl6 -ne 'say [+] .split(",")'
for a CSV file rather than a TSV file.
The text was updated successfully, but these errors were encountered: