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

NAME

Egg::Plugin::Filter::EUC_JP - Filter module for Japanese euc.

SYNOPSIS

 package [MYPROJECT];
 use strict;
 use Egg qw/-Debug Filter::EUC_JP/;

 $e->filter( {
   myname  => [qw/hold_html h2z j_strip_j j_trim/],
   address => [qw/hold_html h2z j_strip j_trim/],
   } );

DESCRIPTION

$e->config->{character_in} Thing that A is made 'euc'.

The character takes the shape when 'sjis' and 'utf8' are set.

FILTERS

h2z

The one-byte character is made em-size. This is processed with $e->encode->set(var)->h2z.

j_trim

Space in the back and forth is deleted. It corresponds to the em-size space.

j_hold

All the space characters are erased. It corresponds to the em-size space.

j_strip

Space character is replaced with all one space. It corresponds to the em-size space.

j_strip_j

It processes like j_strip and it replaces it with the em-size space.

SEE ALSO

Egg::Plugin::Filter

AUTHOR

Masatoshi Mizuno, <mizuno@bomcity.com>

COPYRIGHT AND LICENSE

Copyright (C) 2006 Bee Flag, Corp. <http://egg.bomcity.com/>, All Rights Reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.