ShiftJIS::Regexp: version 0.17 ============== NAME ShiftJIS::Regexp - Shift_JIS-oriented regexps on 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 for Shift_JIS-oriented regexps on 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 5.003 or later. 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.