Thread: Perl

  1. #1
    Refugee face_master's Avatar
    Join Date
    Aug 2001
    Posts
    2,052

    Perl

    I'm thinking of learning perl. I found a good tutorial, but doesn anybody knopw of some better ones which arn't listed on google or any specific ones that they found to be very helpful?

    Thanks

  2. #2
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    flashdaddee has a tutorial or a reference of some kind in its books section of the web site. look under the oreilly bookshelf.

  3. #3
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212
    Perl is great. I do pretty much everything I would normally do in C in Perl nowadays. Especially when I'm dealing with files or complex strings, and by changing the code a bit, I can put it on my website. It's not able to compete with the speed of C, though. I wrote a script to calculate the most said words in my IRC log [roughly 500kb with tens of thousands of unique words], and the processing took 5 minutes for my Perl script, and when I wrote the equivilent in C it took twenty seconds (with only a few changes to the method).

    and it sucks that you can't treat strings as arrays unless you:

    @arraystring = split(//, $string);

    annoying.

    tutorials...
    http://www.perl.com/cs/user/query/q/6?id_topic=74
    Last edited by Brian; 10-12-2002 at 02:41 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C structure in perl typemap
    By rotis23 in forum Linux Programming
    Replies: 1
    Last Post: 07-16-2003, 11:13 AM
  2. de facto perl book
    By rotis23 in forum Linux Programming
    Replies: 1
    Last Post: 05-22-2003, 04:43 AM
  3. perl program question
    By newbie2c in forum Tech Board
    Replies: 2
    Last Post: 02-03-2003, 10:19 AM
  4. From Perl to C
    By Heavenstrash in forum C Programming
    Replies: 4
    Last Post: 06-19-2002, 01:22 AM
  5. perl need help pls.....
    By magnum38 in forum A Brief History of Cprogramming.com
    Replies: 0
    Last Post: 12-12-2001, 10:35 PM