in reply to Re^2: Weird quoting with /x modifier
in thread Weird quoting with /x modifier
So if # actually have higher precedence in regexp with /x modifier it is a bug, because it does not work as stated.
True. You can use perlbug to file a report.
If # had higher precedence than \Q..\E, string was just trimmed after the # character.
False. "#" doesn't trim anything.
>perl -e"print qr/4d#sd/x" (?x-ism:4d#sd )
|
|---|