in reply to Re: [perlre] 4-digit hex code in regexp? How to specify?
in thread [perlre] 4-digit hex code in regexp? How to specify?
Which if often used might be better written as{ my $temp = "\x{0024}\x{1F45}"; s/([$temp])/$delimiter/gm; }
# somewhere in init code my $descriptive_charclass_name = do { my $wide = "\x{0024}\x{1F45}"; qr/[$widechars]/; }; # ... later s/($descriptive_charclass_name)/$delimiter/gm;
Makeshifts last the longest.
|
|---|