diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-07 17:31:59 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-07 17:31:59 +0300 |
commit | 6ae08e872756cbc6f4574780f015c47afb6acdaf (patch) | |
tree | 9d74aa03b9a8eef3e8713563006919d7fd3e38eb | |
parent | f5df7fad8c8b864c3d817d8eb4f9fa3596c2a14b (diff) | |
download | egawk-6ae08e872756cbc6f4574780f015c47afb6acdaf.tar.gz egawk-6ae08e872756cbc6f4574780f015c47afb6acdaf.tar.bz2 egawk-6ae08e872756cbc6f4574780f015c47afb6acdaf.zip |
Minor doc update.
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/gawk.texi | 5 | ||||
-rw-r--r-- | doc/gawktexi.in | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 2f1dc614..37245b5c 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2015-04-07 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in: Add a minor note to revisit FPAT pattern for CSV + files at some point. + 2015-04-05 Andrew J. Schorr <aschorr@telemetry-investments.com> * gawktexi.in: Replace http://gawkextlib.sourceforge.net with diff --git a/doc/gawk.texi b/doc/gawk.texi index ba2b5bcc..fbf0e8d2 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -7884,6 +7884,11 @@ contain at least one character. A straightforward modification FPAT = "([^,]*)|(\"[^\"]+\")" @end example +@c FIXME: 4/2015 +@c Consider use of FPAT = "([^,]*)|(\"[^\"]*\")" +@c (star in latter part of value) to allow quoted strings to be empty. +@c Per email from Ed Morton <mortoneccc@comcast.net> + Finally, the @code{patsplit()} function makes the same functionality available for splitting regular strings (@pxref{String Functions}). diff --git a/doc/gawktexi.in b/doc/gawktexi.in index e3d396d1..30201a2c 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -7484,6 +7484,11 @@ contain at least one character. A straightforward modification FPAT = "([^,]*)|(\"[^\"]+\")" @end example +@c FIXME: 4/2015 +@c Consider use of FPAT = "([^,]*)|(\"[^\"]*\")" +@c (star in latter part of value) to allow quoted strings to be empty. +@c Per email from Ed Morton <mortoneccc@comcast.net> + Finally, the @code{patsplit()} function makes the same functionality available for splitting regular strings (@pxref{String Functions}). |