Hi hellotexi, On Sun, 17 Jun 2012 01:28:06 -0000 ... Well, first of all, note that you should not call a scalar variable that holds an array reference "str"...
27348
Shawn H Corey
shawnhcorey@...
Jun 17, 2012 11:28 am
... Because it's a slice; see http://perldoc.perl.org/perldata.html#Slices Also, you should always `use strict;` and `use warnings`: #!/usr/bin/env perl use...
27349
knowledgevisionstayth...
knowledgevis...
Jul 2, 2012 2:01 pm
1) Assigned a task to extract data fron a text file. 2) Output file needs to be very specific, and created monthly 3) tried doing in korn shell too complex 4)...
27350
Shlomi Fish
shlomif2
Jul 2, 2012 2:36 pm
Hi knowledgevision, first of all, I should note that you are likely to receive better help on beginners@... : http://lists.perl.org/list/beginners.html On...
27351
Rob Richardson
interrobang
Jul 2, 2012 3:00 pm
Schlomi, Thanks for your recommendations. I am quite behind the times. Why is Strawberry Perl better than ActivePerl? RobR...
27352
Shlomi Fish
shlomif2
Jul 2, 2012 3:51 pm
Hi Rob, On Mon, 2 Jul 2012 11:00:50 -0400 ... It's "Shlomi". ... off the top of my head: 1. Strawberry Perl is open-source whereas ActivePerl is proprietary. ...
27353
merlyn@...
merlynstoneh...
Jul 2, 2012 5:14 pm
... knowledgevisionstaythirsty> 5) Bought The Perl CD Book Shelf The Perl CD Bookshelf is *quite* old (at least a decade and a half). You'd be better off...
27354
Phil Pinkerton
knowledgevis...
Jul 3, 2012 8:09 am
Thanks I'll get started on your recommendations...
27355
Phil Pinkerton
knowledgevis...
Jul 3, 2012 1:57 pm
Oh well I only paid $5.00 Now I also have the Modern Perl 2011-2012 PDF version and various links. So far no success even in just doing a simple extraction of...
27356
ilayar
raj123brothers
Jul 14, 2012 10:22 pm
#!/usr/bin/perl -w use strict; use warnings; use Image::Magick; my @out; my $path = $ARGV[0]; my @tifFiles = &GetFiles($path); foreach my $tifFile(@tifFiles) {...
27357
Charles K. Clarkson
charlesclarkson
Jul 15, 2012 12:32 am
What leads you to believe something is wrong? Are you getting a different result than you expect? What are you getting? What are you expecting? Are you getting...
27358
jana_van
Jul 26, 2012 12:25 pm
#!/usr/local/roadm/bin/perl # This is compiled with threading support use strict; use warnings; use threads; use threads::shared; use Switch; my @arr=(); my...
27359
Shawn H Corey
shawnhcorey@...
Jul 26, 2012 1:02 pm
On Thu, 26 Jul 2012 11:57:28 -0000 ... Does this do what you want? #!/usr/bin/env perl use 5.014; use strict; use warnings; use Data::Dumper; # Make...
27360
timothy adigun
eternity8008
Jul 26, 2012 1:47 pm
Hello, See my comments below. ... NOTE: The code below, while 25*$k changes for each value of $k, you have 25 constant i.e when $k == 0, your @temp = @arr[0...
27361
merlyn@...
merlynstoneh...
Jul 30, 2012 4:34 pm
... jana> use Switch; Please don't. jana> My requirement is that @temp should print 25 elments of @arr for jana> each iteration and the original array @arr...
27362
Rob Richardson
interrobang
Jul 30, 2012 4:36 pm
Randal, Why not use Switch? Since this is a beginner's forum, an explanation would be helpful. RobR...
27363
Matthew K
matt_hew.rm
Jul 30, 2012 5:44 pm
The author of Switch posted this. http://www.perlmonks.org/?node_id=486756 For those of you who don't want to click, he lists it under, "modules you shouldn't...
27364
Shlomi Fish
shlomif2
Jul 30, 2012 5:44 pm
Hi Rob, On Mon, 30 Jul 2012 12:36:02 -0400 ... Reading from http://perl-begin.org/tutorials/bad-elements/#switch_pm : <<< One should not use Switch.pm to...
27365
ivy_hikaru2009
Aug 6, 2012 9:19 am
Hi All, Can using Perl for protocol MM7? Thanks Hikaru...
27366
Farahim Khan
farahim_786
Aug 6, 2012 10:50 am
Hi Experts, I am not able to download Tk or any package from internet. I am using the syntax in CMD C:\>ppm install Tk The following error occurs after this: ...
27367
andy_bach@...
afbach1
Aug 6, 2012 4:29 pm
... I don't know specfically but as MM7 is SOAP/HTTP based web service: http://www.celtius.com/s.asp?p=516 It would appear you can use SOAP::Lite (for one) to...
27368
Shlomi Fish
shlomif2
Aug 6, 2012 4:51 pm
Hi, On Mon, 6 Aug 2012 11:29:17 -0500 ... Here is what perlbot has to say about SOAP: <rindolf> perlbot: soap <perlbot> rindolf: avoid SOAP::Lite, try...
27369
Ken Shail
shailken
Aug 6, 2012 5:02 pm
... Have you tried adding the following repositories in ppm? http://www.bribes.org/perl/ppm/ or http://www.bribes.org/perl/ppm64/ if you are using 64 bit...
27370
ivy_hikaru2009
Aug 8, 2012 4:17 am
Dear All, Thanks for the help....
27371
timmarkus498
Aug 18, 2012 12:38 am
Dear, I am beginning and Ive been trying to compare lines between two files by one specify column in two files and put in other file (output) lines common by...
27372
Shlomi Fish
shlomif2
Aug 18, 2012 10:01 am
Hi timmarkus, Let me review your code. On Fri, 17 Aug 2012 22:28:04 -0000 ... It's great that you're using strict and warnings. ... "my $file3 = " what...
27373
Shawn H Corey
shawnhcorey@...
Aug 18, 2012 12:17 pm
On Sat, 18 Aug 2012 13:01:38 +0300 ... No, the he said he wanted the second column, which is indexed by 1. -- Just my 0.00000002 million dollars worth, Shawn ...
27374
Charles K. Clarkson
charlesclarkson
Aug 18, 2012 6:39 pm
You are writing this solution from the top down. You do not have to write it in that order. Write the core algorithm first, then add the UI and I/O after that...
27375
Markus Tim
timmarkus498
Aug 23, 2012 12:11 am
Thank you for help and suggestion! [Non-text portions of this message have been removed]...