|
leanpub.com/perl6 | logs at irclog.perlgeek.de/perl6book/today | announcement at perlgeek.de/blog-en/perl-6/2016-book.html Set by moderator on 27 February 2017. |
|||
|
02:49
ilbot3 joined
|
|||
| moderator | leanpub.com/perl6 | logs at irclog.perlgeek.de/perl6book/today | announcement at perlgeek.de/blog-en/perl-6/2016-book.html | ||
| [ptc] | moritz: are the "two dots" in a negated regex the range operator? I.e. : '..' | 18:17 | |
| moritz: I think there's a bug in `my regex value { <!before \\s> <-[ \\s ; ]>+ <!after \\s> }`; shouldn't it be `my regex value { <!before \\s> <-[ \\n ; ]>+ <!after \\s> }` | 18:27 | ||
| moritz: that matches the rest of the text and the explanation you give for matching the value part of the key=value pair | |||
| moritz: which implies that `my regex value { <-[ \\s ; ]>+ & \\S.* & .*\\S }` should be replaced by `my regex value { <-[ \\n ; ]>+ & \\S.* & .*\\S }` | 18:30 | ||
| moritz: actually, I just found the examples test file and I believe I'm right, so will make the change in a separate commit | 18:35 | ||
| moritz | [ptc]: thanks! | 19:28 | |
| [ptc]: and yes, <-[ \\n ; ]> looks right | 19:29 | ||