logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Juman::Hinsi - Juman 品詞体系を扱うライブラリ

Author

Description

       Juman 品詞体系の情報を得るための関数を提供するライブラリである.

Functions

       get_hinsi ( ID )
           品詞番号から品詞を得る

       get_hinsi_id ( STR )
           品詞から品詞番号を得る

       get_bunrui ( HINSI, ID )
           細分類番号から細分類を得る

       get_bunrui_id ( HINSI, STR )
           細分類から細分類番号を得る

       get_type ( ID )
           活用型番号から活用型を得る

       get_type_id ( STR )
           活用型から活用型番号を得る

       get_form ( TYPE, ID )
           活用型と活用形番号から活用形を得る

       get_form_id ( TYPE, STR )
           活用型と活用形から活用形番号を得る

Name

       Juman::Hinsi - Juman 品詞体系を扱うライブラリ

Notes

       "Juman" オブジェクトのメソッドとして利用することもできる.

         Example:

            use Juman;
            $juman = new Juman();
            $id = $juman->get_hinsi_id( '名詞' );

Pod Errors

       Hey! Theabovedocumenthadsomecodingerrors,whichareexplainedbelow:

       Around line 15:
           Non-ASCII character seen before =encoding in '品詞体系を扱うライブラリ'. Assuming UTF-8

perl v5.38.2                                       2024-09-11                                  Juman::Hinsi(3pm)

See Also

       •   Juman

       •   Juman::Grammar

Synopsis

        use Juman::Hinsi qw/ get_hinsi_id /;
        $id = &get_hinsi_id( '名詞' );

See Also