in reply to Any good ways to handle NARROW NO-BREAK SPACE characters in regex in newer versions of Perl?
SSCCE please... \s works for me. Are you sure you're not using the /a modifier or something like that?
perl -wMstrict -lE "qq/\N{NARROW NO-BREAK SPACE}/ =~ /\A\s\z/ and say +'OK' or die" OK
|
---|