Comments on: Five great Perl programming techniques to make your life fun again http://www.xaprb.com/blog/2006/10/05/five-great-perl-programming-techniques-to-make-your-life-fun-again/ Stay curious! Thu, 02 May 2013 12:36:53 +0000 hourly 1 http://wordpress.org/?v=3.5.1 By: Tom http://www.xaprb.com/blog/2006/10/05/five-great-perl-programming-techniques-to-make-your-life-fun-again/#comment-33095 Tom Tue, 05 Mar 2013 06:29:30 +0000 http://www.xaprb.com/blog/?p=238#comment-33095 very useful.

plz look following

my @letters = qw(a b c d e f);
my @slice = @letters[1, 4, 3];
# @slice is now b, e, d
@slice = @letters[0..3, 4];
# @slice is now a, b, c, d, f

$letter[4] is ‘e’ . so @slice will be a, b, c, d, e

]]>
By: Bozo McPhereson http://www.xaprb.com/blog/2006/10/05/five-great-perl-programming-techniques-to-make-your-life-fun-again/#comment-19356 Bozo McPhereson Mon, 09 May 2011 12:18:21 +0000 http://www.xaprb.com/blog/?p=238#comment-19356 Thanks for this. I’ve been a Perl hobbyist for six years, and always felt that I’ve been copy/pasting too much code. You’ve sent me down the path to achieve intermediateness.

]]>
By: Tanuj http://www.xaprb.com/blog/2006/10/05/five-great-perl-programming-techniques-to-make-your-life-fun-again/#comment-19243 Tanuj Fri, 01 Apr 2011 10:59:29 +0000 http://www.xaprb.com/blog/?p=238#comment-19243 Excellent article.
Thanks for the information.

]]>
By: Ruby Fan http://www.xaprb.com/blog/2006/10/05/five-great-perl-programming-techniques-to-make-your-life-fun-again/#comment-16538 Ruby Fan Tue, 09 Jun 2009 02:06:58 +0000 http://www.xaprb.com/blog/?p=238#comment-16538 Thanks for your help ,much apprecaited!

]]>
By: Alexandr Ciornii http://www.xaprb.com/blog/2006/10/05/five-great-perl-programming-techniques-to-make-your-life-fun-again/#comment-16496 Alexandr Ciornii Tue, 02 Jun 2009 10:25:35 +0000 http://www.xaprb.com/blog/?p=238#comment-16496 I was wrong that C/C++ should be always faster. See POGL Benchmarks – C vs Perl. POGL is an OpenGL library. Result: “No statistical difference in overall performance between C and Perl”, “On Vista, Perl occasionally/often ran faster than C “. For explanations why, read the article.

]]>