Any good online tutorial for perl programming?

Ameesh

Lifer
Apr 3, 2001
23,686
1
0
dont bother learn, python instead, its much faster to learn and devolp in , and faster to run too and more power full. its perl's big brother
 

calbear2000

Golden Member
Oct 17, 2001
1,027
0
0
Honestly, the easiest way to learn is to get a hold of some perl code and mess around with it.

Perl is an easy and simple language to pick up. No real need for an online tutorial or course. The llama book (O'Reilly) is a good source though.
 

notfred

Lifer
Feb 12, 2001
38,241
4
0
What I've found to be the most useful perl reference anywhere - link


Perl really isn't that complicated, aside from things like regular expressions.
 

Handle

Senior member
Oct 16, 1999
551
0
0
I don't know a URL off-hand, but search for "Robert's Perl Tutorial"... I learned the basics from there.

And why does everyone say regular expressions are tough? The basics, and even the mid-range stuff, is just a matter of memorizing and systematically applying syntax.
 

yllus

Elite Member & Lifer
Aug 20, 2000
20,577
432
126
I have the be-all and end-all solution to your question.

cgi101.com

Actually I'm not sure if all of this CGI stuff is in Perl but I believe it is. If it's not, someone let me know. :)
 

MustPost

Golden Member
May 30, 2001
1,923
0
0
<<dont bother learn, python instead, its much faster to learn and devolp in , and faster to run too and more power full. its perl's big brother >>

Its annoying when people say which is better x or y, and someone says z.
But I agree python is a lot better in many ways. It might be worth learning, especially if you don't already know a scripting lang
 

notfred

Lifer
Feb 12, 2001
38,241
4
0


<< I don't know a URL off-hand, but search for "Robert's Perl Tutorial"... I learned the basics from there.

And why does everyone say regular expressions are tough? The basics, and even the mid-range stuff, is just a matter of memorizing and systematically applying syntax.
>>



Yeah, a lot of it is easy after you understand it, but when you first see: $string =~ m/<[\w]+[^>]>.*<[\/[\w]+>/; it's overwhelming, and it takes a while to figure out something useful from that.