perlop.pod: add an example to the .. and ... operators
authorShlomi Fish <shlomif@vipe.technion.ac.il>
Tue, 15 Jun 2004 10:15:15 +0000 (13:15 +0300)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Tue, 15 Jun 2004 08:22:32 +0000 (08:22 +0000)
Message-ID: <Pine.LNX.4.56.0406151013140.14618@vipe.technion.ac.il>

p4raw-id: //depot/perl@22936

pod/perlop.pod

index 4430fe7..6f8e2dd 100644 (file)
@@ -532,7 +532,27 @@ As a scalar operator:
         close ARGV if eof;             # reset $. each file
     }
 
-As a list operator:
+Here's a simple example to illustrate the difference between
+the two range operators:
+
+    @lines = ("   - Foo",
+              "01 - Bar",
+              "1  - Baz",
+              "   - Quux");
+
+    foreach(@lines)
+    {
+        if (/0/ .. /1/)
+        {
+            print "$_\n";
+        }
+    }
+
+This program will print only the line containing "Bar". If 
+the range operator is changed to C<...>, it will also print the 
+"Baz" line.
+
+And now some examples as a list operator:
 
     for (101 .. 200) { print; }        # print $_ 100 times
     @foo = @foo[0 .. $#foo];   # an expensive no-op