Group
Extension

Matches 3

Lingua-JA-Moji ( B/BK/BKB/Lingua-JA-Moji-0.60.tar.gz, BKB, 2024; MetaCPAN )
Lingua-JA-Moji/lib/Lingua/JA/Moji.pod ( view source; MetaCPAN )
report errors.

=item L<Convert::Moji>

This is used for most of the work of the module.

=item L<JSON::Parse>

This is used to read in some of the data.

=back

=head1 ACKNOWLEDGEMENTS

Thanks to Nao
Lingua-JA-Moji ( B/BK/BKB/Lingua-JA-Moji-0.60.tar.gz, BKB, 2024; MetaCPAN )
Lingua-JA-Moji/lib/Lingua/JA/Moji.pm ( view source; MetaCPAN )
 '0.60';

use Carp 'croak';
use Convert::Moji qw/make_regex length_one unambiguous/;
use JSON::Parse 'read_json';

our @EXPORT_OK = qw/
    InHankakuKatakana
    InKana
    InWideAscii
    ascii2wide
0.0) related

my $hentai_file = __FILE__;
$hentai_file =~ s!\.pm$!/!;
$hentai_file .= "hentaigana.json";
# Hentai to hiragana (one to one)
my %hen2hi;
# Hiragana to hentai (one to many)
my %hi2hen;
# 
na to hentai regex
my $hi2hen_re;
# Hentai data
my $hendat;

sub load_hentai
{
    $hendat = read_json ($hentai_file);
    for my $h (@$hendat) {
	my $hi = $h->{hi};
	my $hen = chr ($h->{u});
	$hen2hi
Lingua-JA-Moji ( B/BK/BKB/Lingua-JA-Moji-0.60.tar.gz, BKB, 2024; MetaCPAN )
Lingua-JA-Moji/lib/Lingua/JA/Moji-ja.pod ( view source; MetaCPAN )
report errors.

=item L<Convert::Moji>

This is used for most of the work of the module.

=item L<JSON::Parse>

This is used to read in some of the data.

=back

=head1 ACKNOWLEDGEMENTS

Thanks to Nao

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.