A version 0.10 ============== NAME ShiftJIS::Regexp - to use Shift_JIS-oriented regexps in the byte-oriented perl. SYNOPSIS use ShiftJIS::Regexp qw(:all); match('あお12', '\p{InHiragana}{2}\p{IsDigit}{2}'); match('あいいううう', '^あい+う{3}$'); replace($str, 'A', 'A', 'g'); DESCRIPTION This module provides some functions to use Shift_JIS-oriented regexps in the byte-oriented perl. re() returns Shift_JIS-oriented regexps parsable by the byte-oriented perl. match() works like m///. replace() works like s///. jsplit() works like CORE::split. INSTALLATION To install this module type the following: perl Makefile.PL make make test make install PREREQUISITES perl. COPYRIGHT AND LICENCE Copyright(C) 2001, SADAHIRO Tomoyuki. Japan. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.