ShiftJIS::Regexp: version 0.20
==============

NAME

ShiftJIS::Regexp - Shift_JIS-oriented regexps 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 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.
