in reply to Re^4: Why is "any" slow in this case?
in thread Why is "any" slow in this case?
(??{}) works faster in this case, but the final value can "accidentally" match.qcode => sub { while ( $data =~ /^(?!(?:0|15|16|31)\D)(\d+)\N{SPACE} (?!(?:0|15|16|31)\D)(\d+)\N{SPACE} (?{ 0 and print "[$1, $2, or match further] +" }) /mgx ) { } return 1 },
|
|---|