ShiftJIS::Regexp: version 0.25
==============

NAME

ShiftJIS::Regexp - Shift_JIS-oriented regular expressions on the byte-oriented perl

SYNOPSIS

    use ShiftJIS::Regexp qw(:all);
    match('PQ', '\p{Hiragana}{2}\p{Digit}{2}');
    match('', '^+{3}$');
    replace($str, 'A', '`', 'g');

DESCRIPTION

This module provides some functions for regular expressions
which are oriented to Shift_JIS and can be used on the byte-oriented perl.

    re() returns a Shift_JIS-oriented regular expression.
    match() works like m/// but is oriented to Shift_JIS.
    replace() works like s/// but is oriented to Shift_JIS.
    jsplit() works like CORE::split but is oriented to Shift_JIS.

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.
