The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lingua::JA::Name::Splitter - split a Japanese name into given and family

SYNOPSIS

    use utf8;
    use Lingua::JA::Name::Splitter 'split_kanji_name';
    my ($family, $given) = split_kanji_name ('風太郎');
    print ("$family $given\n");
    

produces output

    風 太郎

(This example is included as synopsis.pl in the distribution.)

VERSION

This documents Lingua::JA::Name::Splitter version 0.12 corresponding to git commit 1b29819c126aab5760768591bf2a3f1fca61f520 released on Thu Jul 13 17:04:07 2023 +0900.

This module is based on the "Enamdict" data released on 2023-07-08.

DESCRIPTION

This module attempts to split the names of Japanese people into given and family names.

FUNCTIONS

kkname

    my $iskk = kkname ($kanjiname);

This returns a true value if $kanjiname appears to be a kanji/kana name, and false if not.

split_kanji_name

    my ($family, $given) = split_kanji_name ('渡辺純子');

Native Japanese writing does not use spaces, so names appear as a string of characters with no break. This function provides a "guesswork" solution for dealing with names. It is a rough guess based on a simple algorithm, and thus is suitable for those who need to deal with large numbers of names quickly. Its output is not reliable, and must be checked by a human.

The heuristic methods used are as follows. The first character is assumed to be the family name's, and the last character is assumed to be the given name's. When there are more than two characters in the name, hiragana are assumed part of the given name. Kanji characters are weighted by distance from the beginning of the name. A dictionary of probabilities of family or given name kanji is also used to weight some characters. The name is then split at the first character which seems more likely to be part of the given name.

split_romaji_name

    my ($first, $last) = split_romaji_name ($name);

Given a string containing a name of a Japanese person in romanized form, guess which part is the first and which part is the last name using the spaces, capitalization and commas in the name.

Japanese people write their names in a variety of romanized formats, such as "KATSU, Shintaro", "Shintaro Katsu", "KATSU Shintaro", or even "ShintaroKATSU". This function is intended as a "rock breaker" for processing a large number of Japanese names in romanized form. Its output needs to be checked by a human.

    use Lingua::JA::Name::Splitter 'split_romaji_name';
    for my $name ('KATSU, Shintaro', 'Risa Yoshiki') {
        my ($first, $last) = split_romaji_name ($name);
        print "$first $last\n";
    }
    

produces output

    Shintaro Katsu
    Risa Yoshiki

(This example is included as katsu-yoshiki.pl in the distribution.)

DEPENDENCIES

Carp

Carp is used to report errors.

Lingua::JA::Moji

Lingua::JA::Moji is used to process Japanese characters and detect romanised Japanese.

EXPORTS

Nothing is exported by default. "split_kanji_name" and "split_romaji_name" are exported on demand. An export tag :all exports both functions.

    use Lingua::JA::Name::Splitter ':all';

SEE ALSO

About Japanese names

For people who've stumbled upon this module by accident and wonder why anyone would need a Japanese name splitter, see the Sci.lang.japan FAQ on Japanese names or the Wikipedia page on Japanese names.

Enamdict

The Enamdict dictionary of name data used by the module is a project of the Electronic Dictionary Research and Development Group (EDRDG). Please see ENAMDICT/JMnedict Japanese Proper Names Dictionary Files for full details.

Build scripts

The following build scripts are used by the module.

The script which makes the dictionary, enamdict-counter.pl, is in the module's repository, but it is not provided in the distribution itself. The script failures.pl counts the number of failed matches with Enamdict. The script test-splitter.pl is used to compute a probability factor used in the module. The module Enamdict.pm handles reading and parsing Enamdict.

AUTHOR

Ben Bullock, <bkb@cpan.org>

COPYRIGHT & LICENCE

This package and associated files are copyright (C) 2012-2023 Ben Bullock.

You can use, copy, modify and redistribute this package and associated files under the Perl Artistic Licence or the GNU General Public Licence.