INFINITY -数学とかプログラミングとか-

統計とプログラムを使って役に立たせたい

TeX用コマンド入力を支援するための辞書をご利用ください。
sanctuary's blogは,適当なことが書いてあります。

2011-12-18から1日間の記事一覧

文字列削除

#!C:\\Perl\\bin\\perl.exe $char='132421488674034.0747545813,'; print "Content-Type: text/html\n\n"; print "$char \n"; $char =~ s/\.//g; print "$char \n"; 実行結果: no132421488674034.0747545813, no1324214886740340747545813, 「.」が削除され…

perl module

unshift @INC, '/home/user/perl/addlib/'; しても、指定したディレクトリを探してくれないので、.bashrcに追加する。 $ vi ~/.bashrc export PERL5LIB=/home/user/perl/addlib$ source ~/.bashrc//これをしないと下に加わらない。$perl -le 'print for @INC…

2011年12月18日のツイート

@tashirohiro4: tashirohiro4をフォローしている誰か(それはあなたかも)と、nisehobironさんがドミニオンしたいそうです。ドミニオンしたい同士になりませんか? URL #gohantabeyo2011-12-19 00:19:26 via gohantabeyo.com @tashirohiro4: ビビアン・スーオ…

#!C:\\Perl\\bin\\perl.exe @INC=("C:/xampp/htdocs/「適当に」/cgi",@INC); use strict; use Digest::SHA1 qw(sha1 sha1_hex); #print "Content-Type: text/html\n\n"; my $test='a'; print "$test \n\n"; print sha1_hex($test); 実行結果:C:\xampp\htdoc…