diff options
author | Steve Peters <steve@fisharerojo.org> | 2004-10-23 03:01:51 -0500 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-10-24 07:53:45 +0000 |
commit | d7782e692220009924ccb07ccb747c51ffee1823 (patch) | |
tree | 48e0a87cd7000527c17ec1e00fa5b84d01cb357d /pod/perlop.pod | |
parent | d58892206344925510820a73d2d509d20abee418 (diff) | |
download | perl-d7782e692220009924ccb07ccb747c51ffee1823.tar.gz |
Re: [perl #31937] perlop: add basic =~ examples
Message-Id: <200410230801.51649.steve@fisharerojo.org>
p4raw-id: //depot/perl@23420
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 17cf9a7578..aa0e33905e 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -219,7 +219,8 @@ pattern, substitution, or transliteration. The left argument is what is supposed to be searched, substituted, or transliterated instead of the default $_. When used in scalar context, the return value generally indicates the success of the operation. Behavior in list context depends on the particular -operator. See L</"Regexp Quote-Like Operators"> for details. +operator. See L</"Regexp Quote-Like Operators"> for details and +L<perlretut> for examples using these operators. If the right argument is an expression rather than a search pattern, substitution, or transliteration, it is interpreted as a search pattern at run |