Hi,

I need catch string that may include 'utf8' characters:
e.g.:

  my $str_utf8 = 'N-Größe';
  my @res = ( $str_utf8 =~ /(\w+)/g );
  print join( " ++ ", @res ), "\n";


it prints:

 N ++ Gr ++ e

but I need:

N ++ Größe


thanks
Pinkhas Nisanov
_______________________________________________
Perl mailing list
[email protected]
http://perl.org.il/mailman/listinfo/perl

Reply via email to