On Thu Apr 11 17:09:09 2013, GAAS wrote:
Show quoted text> Is there actually any way to output the same regexp using qr/.../ notation?
> Something like qr/\$dollar/ means something different.
>
> I wasn't able to make any string match qr'$dollar'.
qr/${\'$'}dollar/ seems to work, no?
DB<1> p qr'$dollar'
(?^:$dollar)
DB<2> p qr/${\q{$}}dollar/
(?^:$dollar)
DB<3>
Eirik