On 10.06.2013 23:54, Eric Brine wrote: > oops, I didn't notice you switched from m// to qr//. > > But qr// does something useful too, contrary to what you said. I've seen > hashes keyed by regex patterns. > > $hash{$re} = [ /$re/ ]; That's still available via explicit stringification: $hash{"$re"} or $hash{"" . $re}. But yes, it's an incompatibility. -- Lukas Mai <plokinom@gmail.com>Thread Previous | Thread Next