Re: is there a limit to a s/ ?

2018-08-11 Thread yary
I'm happy when I can use the .. and ... operators in p5, thanks for the tip on the p6 analog! -y On Sat, Aug 11, 2018 at 1:44 AM, Simon Proctor wrote: > One thing your example you'll lose the second <\div>. > > ff is great for working though lines of data. Going back to your previous > example s

Making sure Perl6 is in all of the Wikipedia examples articles

2018-08-11 Thread Benji
Here are all the ones I've found that need Perl6 examples: https://pastecode.xyz/view/5a4e619d

Data::Dump::Tree maintenance

2018-08-11 Thread JJ Merelo
Dear Mr. Khemir: I have noticed that there are a number of PRs and issues in the module mentioned above, including mine, which you apparently couldn't address. I have made several modifications to the module, and would be willing to take over it. Maybe you could give me a push bit in the repo? My G

Re: is there a limit to a s/ ?

2018-08-11 Thread Simon Proctor
One thing your example you'll lose the second <\div>. ff is great for working though lines of data. Going back to your previous example say we have a file like. A B C D E F G And we want to print the lines from C to F we can write. for "file".IO.lines { print if /C/ ff /F/; } Each line in t