blob: 54595737aae2e89fd9517d45cfae8f7bb6d3f94b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#-*- perl -*-
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $Id$
# $FML$
#
package Dialect::Japanese::Utils;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
use Carp;
=head1 NAME
Dialect::Japanese::Utils - what is this
=head1 SYNOPSIS
use Dialect::Japanese::Utils qw(is_iso2022jp_string);
if ( is_iso2022jp_string($string) ) { do_something_if_Japanese;}
=head1 DESCRIPTION
Utilities for Japanse string
=head1 METHODS
=head2 <is_iso2022jp_string($string)>
check whether $string looks Japanese.
return 1 if it looks so.
=cut
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(is_iso2022jp_string);
sub is_iso2022jp_string
{
my ($buf) = @_;
return (not _look_not_iso2022jp_string($buf));
}
# based on fml-support: 07020, 07029
# Koji Sudo <koji@cherry.or.jp>
# Takahiro Kambe <taca@sky.yamashina.kyoto.jp>
# check the given buffer has unusual Japanese (not ISO-2022-JP)
sub _look_not_iso2022jp_string
{
my ($buf) = @_;
# check 8 bit on
if ($buf =~ /[\x80-\xFF]/){
return 1;
}
# check SI/SO
if ($buf =~ /[\016\017]/) {
return 1;
}
# HANKAKU KANA
if ($buf =~ /\033\(I/) {
return 1;
}
# MSB flag or other control sequences
if ($buf =~ /[\001-\007\013\015\020-\032\034-\037\177-\377]/) {
return 1;
}
0; # O.K.
}
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
Dialect::Japanese::Utils appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|