2003년 4월 9일 수요일

Perl 메뉴얼

http://www.cpan.org/
http://search.cpan.org/
http://www.perl.com/
http://www.perldoc.com/

E-book

Advanced Perl Programming
Network Programming With Perl
Programming Perl
Using Perl For Web Programming
Teach Yourself CGI Programming With Perl 5 In a Week
Teach Yourself Perl 5 in 21 days
The Perl CD Bookshelf
Perl 5 By Example
Perl % Unleashed
Perl Programmer's Reference Guide
Perl Quick Reference
Web Programming With Perl 5


Learning Perl
Perl Cookbook


Unix shell에서 쓸 수 있는 명령들
# man perl
# perldoc -f 함수명

------------
perl의 기본 문법
숫자 비교 : > < == >= <=
문자 비교 : eq, gt, lt, ge, le, ne
precompiled regular expression : $변수 = qr/정규식/
$ : Scalar
@ : Array
% : hash(associative array)
\ : reference
perl은 2차원 이상의 array를 지원하지 않는 다. 따라서
2차원 배열을 쓰고 싶다면 reference(\)를 써야 한다.

C의 else if = Perl의 elsif
C의 continue; = Perl의 next

PHP의 vardump = Perl의 use Data::Dumper;  print Dumper(변수명);

--------------------------
http://alkaid.snu.ac.kr/~terzeron/computer/perl.html

댓글 없음:

댓글 쓰기