in reply to Interpolation in character class
use constant DLE => chr(0x10); my $rx = do { local $_ = quotemeta DLE; qr/ \A $_ [^$_] /x }; $msg =~ $rx; [download]
Makeshifts last the longest.