2006-12-13から1日間の記事一覧

Spreadsheet::ParseExcel

なんかこう、あれだなあ。 Spreadsheet::ParseExcel makes you to get information from Excel95, Excel97, Excel2000 file. バージョンかひょっとして。http://search.cpan.org/~kwitknr/Spreadsheet-ParseExcel-0.2603/ParseExcel.pm

Catalyst::Utils

この人そとに出して欲しいなあ。http://search.cpan.org/~mramberg/Catalyst-Runtime-5.7006/lib/Catalyst/Utils.pm

Regexp::Assemble

こんな感じになるらしい。 use Regexp::Assemble; my $re = Regexp::Assemble->new; $ra->add( 'ab+c' ); $ra->add( 'ab+-' ); $ra->add( 'a\w\d+' ); $ra->add( 'a\d+' ); print $ra->re; # prints a(?:\w?\d+|b+[-c]) うーん。大量に自動処理とか?http://…