The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Lingua::ZH::Dict - Chinese Word MOE Dictionary Lookup

VERSION

This document describes version 0.02 of Lingua::ZH::Dict, released July 25, 2004.

SYNOPSIS

    use Lingua::ZH::Dict;

    # Create Lingua::ZH::Dict object with exact_match set
    my $dict = Lingua::ZH::Dict->new( exact_match => 1);
    # Exact match for "¤Ñ®ð"
    print $token->query('¤Ñ®ð')."\n";

    # Query for any word have "¤Ñ®ð" in dictionary
    $token->exact_match(0);
    print $token->query('¤Ñ®ð')."\n";

DESCRIPTION

This module lookup Dictionary of MOE (Ministry of Education), Taiwan.

METHODS

CAVEATS

This module does not care about efficiency or memory consumption yet, hence it's likely to fail miserably if you demand either of them. Patches welcome.

As the name suggests, the chosen interface is very bizzare. Use it at the risk of your own sanity.

SEE ALSO

LWP::UserAgent, HTML::LinkExtractor

AUTHORS

Cheng-Lung Sung <clsung@dragon2.net>

COPYRIGHT

Copyright 2004 by Cheng-Lung Sung <clsung@dragon2.net>.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html

1 POD Error

The following errors were encountered while parsing the POD:

Around line 28:

Non-ASCII character seen before =encoding in '"¤Ñ®ð"'. Assuming CP1252