Search Results

4
votes

How do I match only fully-composed characters in a Unicode string in Perl?

I think you don't want or need locales for that but, but rather Unicode. If you have decoded a text string, \w will match word characters in any language, \d matches not j …
6
votes

How do I use Unicode characters in Pod and perldoc?

Use =encoding utf-8 as the first POD directive in your file, and use a fairly recent perldoc (for example from 5.10-maint). Then it should work. …