Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 4a114b7c2704e3abde9bae64cb40f587b8c7790f
https://github.com/perl6/specs/commit/4a114b7c2704e3abde9bae64cb40f587b8c7790f
Author: Elizabeth Mattijsen
Date: 2014-04-28 (Mon, 28 Apr 2014)
Changed paths:
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 89aa2ca8e4028f1abf3025897200ca2d29b17816
https://github.com/perl6/specs/commit/89aa2ca8e4028f1abf3025897200ca2d29b17816
Author: Elizabeth Mattijsen
Date: 2014-04-28 (Mon, 28 Apr 2014)
Changed paths:
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 85d112f4aa0ca40677cd468b8833bb96d0c80f90
https://github.com/perl6/specs/commit/85d112f4aa0ca40677cd468b8833bb96d0c80f90
Author: Elizabeth Mattijsen
Date: 2014-04-28 (Mon, 28 Apr 2014)
Changed paths:
# New Ticket Created by Schwenn, Peter
# Please include the string: [perl #121772]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=121772 >
Designation: Non-Finmeccanica
Dear Perl6'rs
[In short: no variation of $x ~~ s/...(.
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 02e59c99b13166ed914b8bc55c6fd87748473453
https://github.com/perl6/specs/commit/02e59c99b13166ed914b8bc55c6fd87748473453
Author: Elizabeth Mattijsen
Date: 2014-05-01 (Thu, 01 May 2014)
Changed paths:
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: b806d66a24366b56915c3a3d4645f4a79e523e3b
https://github.com/perl6/specs/commit/b806d66a24366b56915c3a3d4645f4a79e523e3b
Author: Elizabeth Mattijsen
Date: 2014-05-01 (Thu, 01 May 2014)
Changed paths:
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: c2543da57c012073a7bb71fef74c0cf799d87c3d
https://github.com/perl6/specs/commit/c2543da57c012073a7bb71fef74c0cf799d87c3d
Author: Elizabeth Mattijsen
Date: 2014-05-01 (Thu, 01 May 2014)
Changed paths:
On 04/30/2014 05:21 PM, schw...@rt.perl.org wrote:
# New Ticket Created by Schwenn, Peter
# Please include the string: [perl #121772]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=121772 >
Designation: Non-Finmeccanica
Dear P
Designation: Non-Finmeccanica
Moritz,
Thanks for the response. I get the same successful result as you do with:
my $line = "bar foo"; $line ~~ s/(\w+) \s+ (\w+)/$1 $0/; say $line # output:
foo bar
All well and good. And if the pattern is one line I get success with my other
s///; forms as w
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 965ec597a57f57c3eae5bf8b642ec13005aabe13
https://github.com/perl6/specs/commit/965ec597a57f57c3eae5bf8b642ec13005aabe13
Author: Elizabeth Mattijsen
Date: 2014-05-02 (Fri, 02 May 2014)
Changed paths:
I just tried this with today's rakudo.moar build and got:
$ cat txt
foo bar
foo bar
$ cat foo.p6
my $layn = slurp "txt";
$layn ~~ s:g/(\w+) \s+ (\w+)/$1 $0/; say $layn;
$ ./perl6 foo.p6
bar foo
bar foo
On Fri, May 2, 2014 at 2:02 PM, Schwenn, Peter wrote:
> Designation: Non-Finmeccanica
>
> M
# New Ticket Created by David Warring
# Please include the string: [perl #121789]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=121789 >
The following is derived from
http://perl6advent.wordpress.com/2012/12/22/day-22-parsin
12 matches
Mail list logo