⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nkf.pm

📁 NKF是网络上写新闻或邮件的时候,汉字的编码转换程序
💻 PM
字号:
package NKF;use strict;use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);require Exporter;require DynaLoader;@ISA = qw(Exporter DynaLoader);# Items to export into callers namespace by default. Note: do not export# names by default without a very good reason. Use EXPORT_OK instead.# Do not simply export all your public functions/methods/constants.@EXPORT = qw(	nkf	);$VERSION = '0.01';bootstrap NKF $VERSION;# Preloaded methods go here.# Autoload methods go after =cut, and are processed by the autosplit program.1;__END__# Below is the stub of documentation for your module. You better edit it!=head1 NAMENKF - Perl extension for Network Kanji Filter =head1 SYNOPSIS  use NKF;  $output = nkf("-s",$input);=head1 DESCRIPTIONThis is a Perl Extension version of nkf (Netowrk Kanji Filter ) 1.7.It converts the last argument and return converted result. Conversiondetails are specified by flags before the last argument.Flags:C<b,u      Output is bufferred (DEFAULT),Output is unbufferred>C<j,s,e    Outout code is JIS 7 bit (DEFAULT), Shift JIS, AT&T JIS (EUC)>C<J,S,E    Input assumption is JIS 7 bit , Shift JIS, AT&T JIS (EUC)>C<t        no conversion>C<i_       Output sequence to designate JIS-kanji (DEFAULT B)>C<o_       Output sequence to designate ASCII (DEFAULT B)>C<r        {de/en}crypt ROT13/47>C<m[BQ]    MIME decode [B:base64 stream,Q:quoted stream]>C<l        ISO8859-1 (Latin-1) support>C<f        Folding: C<-f60> or C<-f>>C<Z[0-2]   Convert X0208 alphabet to ASCII  1: Kankaku to space,2: 2 spaces>C<X,x      Assume X0201 kana in MS-Kanji, C<-x> preserves X0201>C<B[0-2]   Broken input  0: missing ESC,1: any X on ESC-[($]-X,2: ASCII on NL>C<d,c      Delete \r in line feed, Add \r in line feed>=head1 AUTHORNetwork Kanji Filter Version 1.7 (0/9711/Shinji Kono) Copyright (C) 1987, FUJITSU LTD. (I.Ichikawa),1997 S. Kono, COW=head1 SEE ALSOperl(1).   nkf(1)=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -