cvs commit: perlfaq perlfaq.pod perlfaq4.pod

[email protected]
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
cvsuser     02/08/21 17:06:27

  Modified:    .        perlfaq.pod perlfaq4.pod
  Log:
  perlfaq4.pod
  
  Revision  Changes    Path
  1.9       +2 -3      perlfaq/perlfaq.pod
  
  Index: perlfaq.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq.pod,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -w -r1.8 -r1.9
  --- perlfaq.pod	11 Mar 2002 21:32:23 -0000	1.8
  +++ perlfaq.pod	22 Aug 2002 00:06:27 -0000	1.9
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -perlfaq - frequently asked questions about Perl ($Date: 2002/03/11 21:32:23 $)
  +perlfaq - frequently asked questions about Perl ($Date: 2002/08/22 00:06:27 $)
   
   =head1 DESCRIPTION
   
  @@ -421,8 +421,7 @@
   
   =item *
   
  -How can I split a [character] delimited string except when inside
  -[character]? (Comma-separated files)
  +How can I split a [character] delimited string except when inside [character]?
   
   =item *
   
  
  
  
  1.29      +12 -12    perlfaq/perlfaq4.pod
  
  Index: perlfaq4.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq4.pod,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -w -r1.28 -r1.29
  --- perlfaq4.pod	17 Aug 2002 17:07:33 -0000	1.28
  +++ perlfaq4.pod	22 Aug 2002 00:06:27 -0000	1.29
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -perlfaq4 - Data Manipulation ($Revision: 1.28 $, $Date: 2002/08/17 17:07:33 $)
  +perlfaq4 - Data Manipulation ($Revision: 1.29 $, $Date: 2002/08/22 00:06:27 $)
   
   =head1 DESCRIPTION
   
  @@ -744,20 +744,21 @@
   capitalization of the movie I<Dr. Strangelove or: How I Learned to
   Stop Worrying and Love the Bomb>, for example.
   
  -=head2 How can I split a [character] delimited string except when inside
  -[character]? (Comma-separated files)
  +=head2 How can I split a [character] delimited string except when inside [character]?
   
  -Take the example case of trying to split a string that is comma-separated
  -into its different fields.  (We'll pretend you said comma-separated, not
  -comma-delimited, which is different and almost never what you mean.) You
  -can't use C<split(/,/)> because you shouldn't split if the comma is inside
  -quotes.  For example, take a data line like this:
  +Several modules can handle this sort of pasing---Text::Balanced,
  +Text::CVS, Text::CVS_XS, and Text::ParseWords, among others.
  +
  +Take the example case of trying to split a string that is
  +comma-separated into its different fields. You can't use C<split(/,/)>
  +because you shouldn't split if the comma is inside quotes.  For
  +example, take a data line like this:
   
       SAR001,"","Cimetrix, Inc","Bob Smith","CAM",N,8,1,0,7,"Error, Core Dumped"
   
   Due to the restriction of the quotes, this is a fairly complex
  -problem.  Thankfully, we have Jeffrey Friedl, author of a highly
  -recommended book on regular expressions, to handle these for us.  He
  +problem.  Thankfully, we have Jeffrey Friedl, author of 
  +I<Mastering Regular Expressions>, to handle these for us.  He
   suggests (assuming your string is contained in $text):
   
        @new = ();
  @@ -770,8 +771,7 @@
   
   If you want to represent quotation marks inside a
   quotation-mark-delimited field, escape them with backslashes (eg,
  -C<"like \"this\"">.  Unescaping them is a task addressed earlier in
  -this section.
  +C<"like \"this\"">.
   
   Alternatively, the Text::ParseWords module (part of the standard Perl
   distribution) lets you say:
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.