perl6-docs
perl6-docs copied to clipboard
Documents relating to Perl 6
Hello, on the "Introduction to Perl 6 Regex" page the following statement is found: `/ 'foo.' * / # will match "foo.", "foo.foo.", "foo.foo.foo.", etc.` Doesn't the star (*) quantifier...
In "Introduction to Perl 6 Regex" it looks like one of the examples was changed, but the text still refers to the old example. In the last paragraph, in the...
` ` is not built-in subrule ``` #!perl6 use Test; my regex dot { '.' } my regex lt { '' } my regex null { } ok( '.' ~~...
In **Introduction to Perl 6 Regex**, in the section titled **modifiers**, the example using the `:sigspace` modifier causes an error. The text says: > This is so useful that Perl...
In **Introduction to Perl 6 Regex**, in the section titled **matching Perl variables**, it looks like the syntax for Regex named captures has changed from: $:=[ ] to: $=[ ]...