On Thu, Jan 17, 2008 at 10:57:11AM +0100, Moritz Lenz wrote:
> what happens if some of the characters aren't cased at all, like white
> spaces?
>
> my $str = "AB DE";
> $str ~~ s:ii/.*/abcde/;
>
> is the result ABcDE ? or is the space ignored and the substition is
> performed as if $str was "ABDE
[EMAIL PROTECTED] wrote:
> The C<:ii> variant may be used on a substitution to change the
> substituted string to the same case pattern as the matched string.
> -Case info is carried across on a character by character basis. If
> -the right string is longer than the left one, the case of the fi
Author: larry
Date: Thu Jan 10 12:28:57 2008
New Revision: 14485
Modified:
doc/trunk/design/syn/S05.pod
Log:
Some clarifications suggested by moritz++
Modified: doc/trunk/design/syn/S05.pod
==
--- doc/trunk/design/sy