diff options
author | Steve Peters <steve@fisharerojo.org> | 2008-11-14 15:12:18 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2008-11-14 15:12:18 +0000 |
commit | 9f4b9cd0c4bccfdc024ff1e990b924f2caa16454 (patch) | |
tree | ad21da8467a7a6b5c79b935ff30f7a979c70d96e /pod/perlfunc.pod | |
parent | 1ad62f649328dc563f7f21be3c384f5adf18af1d (diff) | |
download | perl-9f4b9cd0c4bccfdc024ff1e990b924f2caa16454.tar.gz |
Various patches added to RT #21568 from julian@mehnle.net.
p4raw-id: //depot/perl@34834
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r-- | pod/perlfunc.pod | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 8e321ef84f..e3d9b27d63 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -2855,7 +2855,7 @@ If EXPR is omitted, stats C<$_>. =item m// -The match operator. See L<perlop>. +The match operator. See L<perlop/"Regexp Quote-Like Operators">. =item map BLOCK LIST X<map> @@ -4776,7 +4776,7 @@ the C<rmtree> function of the L<File::Path> module. =item s/// -The substitution operator. See L<perlop>. +The substitution operator. See L<perlop/"Regexp Quote-Like Operators">. =item say FILEHANDLE LIST X<say> @@ -5521,7 +5521,7 @@ produces the list value If you had the entire header of a normal Unix email message in $header, you could split it up into fields and their values this way: - $header =~ s/\n\s+/ /g; # fix continuation lines + $header =~ s/\n(?=\s)//g; # fix continuation lines %hdrs = (UNIX_FROM => split /^(\S*?):\s*/m, $header); The pattern C</PATTERN/> may be replaced with an expression to specify @@ -6674,7 +6674,8 @@ Note that times for children are included only after they terminate. =item tr/// -The transliteration operator. Same as C<y///>. See L<perlop>. +The transliteration operator. Same as C<y///>. See +L<perlop/"Quote and Quote-like Operators">. =item truncate FILEHANDLE,LENGTH X<truncate> @@ -7432,6 +7433,7 @@ Note that write is I<not> the opposite of C<read>. Unfortunately. =item y/// -The transliteration operator. Same as C<tr///>. See L<perlop>. +The transliteration operator. Same as C<tr///>. See +L<perlop/"Quote and Quote-like Operators">. =back |