Adding to Your Mother's excellent advice above, you'll love the predefined unicode character classes for the various scripts. Here's a minor enhancement to the script provided above (again, using "pre" tags to avoid the mangling of non-ascii characters):
#!/usr/bin/perl

use utf8;
use strictures;
use HTML::Entities "encode_entities_numeric";

binmode STDOUT, ":encoding(UTF-8)";
# OR use Encode, print encode_utf8(...)

while (<DATA>)
{
    chomp;
    next unless /\w/;
    my $script_label = "";
    for my $script ( qw/Arabic Greek Hebrew/ ) {
        $script_label .= " has $script" if ( /\p{$script}/ );
    }
    print $_, $/;
    print "  -> ",  length, " characters long; $script_label", $/;
    print "  -> ", encode_entities_numeric($_), $/;
}

__DATA__
antennæ
עברית
Ελληνικά
العَرَبِية
The output I got from that was:
antennæ
  -> 7 characters long; 
  -> antennæ
עברית
  -> 5 characters long;  has Hebrew
  -> עברית
Ελληνικά
  -> 8 characters long;  has Greek
  -> Ελληνικά
العَرَبِية
  -> 10 characters long;  has Arabic
  -> العَرَبِية
To put that another way, you can match and store strings of characters in particular, language-specific scripts with something like this:
# Assuming $_ contains the input: my @hebrew_parts = /\p{Hebrew}+/g; my @arabic_parts = /\p{Arabic}+/g; my @greek_parts = /\p{Greek}+/g;
Similarly for Han, Cyrillic, Ethiopic, Thai, Devanagari, etc. (As shown above, you have the option of parameterizing the script label as a loop variable.)

In reply to Re: Unicode words match and catch by graff
in thread Unicode words match and catch by kepler

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.