Current Path : /usr/local/lib/perl5/site_perl/5.8.9/mach/Text/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/local/lib/perl5/site_perl/5.8.9/mach/Text/ChaSen.pm |
# # $Id: ChaSen.pm,v 1.2 2008/07/22 13:00:45 masayu-a Exp $ package Text::ChaSen; =head1 NAME Text::ChaSen - ChaSen library module for perl =head1 SYNOPSIS use Text::ChaSen; $res = Text::ChaSen::getopt_argv('chasen-perl', '-j', '-F', '%m '); $str = Text::ChaSen::sparse_tostr("日本語の文字列"); =head1 DESCRIPTION このモジュールは、奈良先端科学技術大学が開発した日本語形態素解析 ソフトウェア"茶筌"をperlから使うためのものである。 =over 4 =item getopt_argv($arg1, $arg2, ...) 茶筌にオプションを渡し、初期化を行う。オプションは、chasenコマンド に指定できるものに準ずるが、C<-s>やC<-D>などのサーバやクライアントに関する オプションは利用できない。 また、一番最初のオプションはプログラムのファイル名である。 例えば、次のような引数で実行したchasenコマンドがある。 $ chasen C<-j> C<-F> '%m ' これと同じ挙動をさせるには、次のような引数でgetopt_argvを呼び出す。 getopt_argv('chasen', 'C<-j>', 'C<-F>', '%m '); =item sparse_tostr($str) 形態素解析を行い、結果を文字列として返す。 =item sparse_tostr_long($str) 形態素解析を行い、結果を文字列として返す。この関数は、以前のバージョン との互換性のためだけに存在する。 =back =head1 COPYRIGHT Copyright(c) 1998, 1999 NOKUBI Takatsugu <knok@daionet.gr.jp> Copyright(c) 1997 Nara Institute of Science and Technorogy. All Rights Reserved. Use, reproduction, and distribution of this software is permitted. Any copy of this software, whether in its original form or modified, must include both the above copyright notice and the following paragraphs. Nara Institute of Science and Technology (NAIST), the copyright holders, disclaims all warranties with regard to this software, including all implied warranties of merchantability and fitness, in no event shall NAIST be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortuous action, arising out of or in connection with the use or performance of this software. The Japanese morphological dictionary included in this system originates from ICOT Free Software. The following conditions for ICOT Free Software applies to the morphological dictionary of the system. Each User may also freely distribute the Program, whether in its original form or modified, to any third party or parties, PROVIDED that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear on, or be attached to, the Program, which is distributed substantially in the same form as set out herein and that such intended distribution, if actually made, will neither violate or otherwise contravene any of the laws and regulations of the countries having jurisdiction over the User or the intended distribution itself. NO WARRANTY The program was produced on an experimental basis in the course of the research and development conducted during the project and is provided to users as so produced on an experimental basis. Accordingly, the program is provided without any warranty whatsoever, whether express, implied, statutory or otherwise. The term "warranty" used herein includes, but is not limited to, any warranty of the quality, performance, merchantability and fitness for a particular purpose of the program and the nonexistence of any infringement or violation of any right of any third party. Each user of the program will agree and understand, and be deemed to have agreed and understood, that there is no warranty whatsoever for the program and, accordingly, the entire risk arising from or otherwise connected with the program is assumed by the user. Therefore, neither ICOT, the copyright holder, or any other organization that participated in or was otherwise related to the development of the program and their respective officials, directors, officers and other employees shall be held liable for any and all damages, including, without limitation, general, special, incidental and consequential damages, arising out of or otherwise in connection with the use or inability to use the program or any product, material or result produced or otherwise obtained by using the program, regardless of whether they have been advised of, or otherwise had knowledge of, the possibility of such damages at any time during the project or thereafter. Each user will be deemed to have agreed to the foregoing by his or her commencement of use of the program. The term "use" as used herein includes, but is not limited to, the use, modification, copying and distribution of the program and the production of secondary products from the program. In the case where the program, whether in its original form or modified, was distributed or delivered to or received by a user from any person, organization or entity other than ICOT, unless it makes or grants independently of ICOT any specific warranty to the user in writing, such person, organization or entity, will also be exempted from and not be held liable to the user for any such damages as noted above as far as the program is concerned. =cut require Exporter; require DynaLoader; @ISA = qw(Exporter DynaLoader); @EXPORT_OK = qw(getopt_argv sparse_tostr fparse_tostr sparse_tostr_long); %EXPORT_TAGS = (all => [qw(getopt_argv sparse_tostr fparse_tostr sparse_tostr_long)]); $VERSION = '1.04'; bootstrap Text::ChaSen $VERSION; 1; __END__ pos = (unsigned char *) "";