Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

beginning_perl · Beginning Perl

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 384
  • Category: Perl
  • Founded: Oct 9, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 28 - 57 of 2974   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
28 mroman85308 Send Email Jan 2, 2004
5:55 pm
I have two csv files with 8 pieces of data per line. I want to see if a case ID number in the second list exists in the first list. Basically, I want to read...
29 William Martell
willmartell Send Email
Jan 2, 2004
6:09 pm
NOT TESTED!!! #!/perl -w use strict; $file1 = "file1.csv"; $file2 = "file2.csv"; open (FILE1, $file1) || "can't open $file1 file. $!"; open (FILE2, $file2) ||...
30 WilliamGunther@...
willgpt Send Email
Jan 3, 2004
5:14 am
######### #!/path/to/perl use strict; my (@match, @first, @second) = []; my ($first, $second, $x, $y) = 0; open(FIRSTLIST, "listone.csv") || die "Couldn&#39;t...
31 William Martell
willmartell Send Email
Jan 7, 2004
2:01 pm
Hello All, I am trying to work with the code I have to extract fields from a text file report, and write the values into excel. I am having trouble. When I get...
32 William Martell
willmartell Send Email
Jan 7, 2004
5:46 pm
Thanks for your reply Joseph, I am reading perlref now. If you can offer some pointers on how to access the key value pairs of the reference object %item. I...
33 WilliamGunther@...
willgpt Send Email
Jan 8, 2004
12:42 am
if @order_detail is an array of hashes than you have multiple options how to read each hash. You could do while (@order_details) { my $hash_ref =...
34 Michael Bluejay
michaelbluejay Send Email
Jan 14, 2004
6:38 am
I'm the most novice of the novice, but I recently got my first Perl scripts up and running after encountering just about every possible pitfall along the way....
35 axmosharraf Send Email Feb 5, 2004
11:17 pm
Hi! I am new to this forum. I am working on Perl 5.6.1 using Microsoft Access as database and the platform is Windows XP. What I am want to do is to access the...
36 WilliamGunther@...
willgpt Send Email
Feb 6, 2004
3:05 am
Win32::OLE?? I have no idea. I hope someone can help you. William Gunther perl -e "print chr(hex $_ + 1) foreach qw(47 64 78 20)" Yeah, I'm a geek.......
37 williamstandkeiii
williamstand... Send Email
Feb 12, 2004
8:27 pm
I'm trying to open the following pipe in perl open(SASPS,"ps - ef|sed 's/^\(.\{32&#92;}\) /\1/; s/^ *$/*/'|grep sas| sort +0 -1 -d +7 - 8 -d +4 -5 -d +6 -7 -d |")...
38 Mark Mecca
meccamw Send Email
Feb 17, 2004
1:25 pm
Greetings. I've been playing around with Perl in an attempt to get it to work with some things that we are doing with DOS Batch commands. Most of our work is...
39 WilliamGunther@...
willgpt Send Email
Feb 17, 2004
7:48 pm
No, you won't be able to install that one. It requires Expect, which requires IO::Pty and IO::Tty which don't port well (I think). Look into Crypt::PGPSimple....
40 Mark Mecca
meccamw Send Email
Feb 18, 2004
3:03 pm
I tried and couldn't get that to go either. That's when I tried PGP5. What did you use to install that module because this is the first time I'm trying to...
41 Mark Mecca
meccamw Send Email
Feb 18, 2004
3:04 pm
... which requires ... absolutly need...
42 WilliamGunther@...
willgpt Send Email
Feb 18, 2004
7:32 pm
Download a free copy of NMAKE (http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe) Make sure it's on your path. Then cd to your the...
43 Mark Mecca
meccamw Send Email
Feb 18, 2004
10:26 pm
Thanks. That seems to have done it. ... US/Nmake15.exe) Make sure it's on your path. Then cd to your...
44 Pradeep K
prad_kris Send Email
Feb 21, 2004
5:24 am
Hi, I am doing a project with Perl and oracle 9i..I m working on Red Hat8 and have a problem. PLS help me. This is the script: #! /usr/bin/perl print...
45 Pradeep K
prad_kris Send Email
Feb 28, 2004
1:34 pm
Hi, The situation is this ..I need to ask for username and pasword and save the information abt the user...I have backend oracle and have the username and...
46 shraddha more
its_shraddham Send Email
Mar 1, 2004
10:37 am
Hi.. This is Shraddha. i want to run .pl or .cgi files from apache server stored in cgi-bin directory of serevr.But it gives error - Internal server error. ...
47 WilliamGunther@...
willgpt Send Email
Mar 1, 2004
7:34 pm
In a message dated 3/1/2004 5:38:58 AM Eastern Standard Time, ... directory of serevr.But it >gives error - Internal server error. ... files if it is stored...
48 Mark Mecca
meccamw Send Email
Mar 2, 2004
6:12 am
I will be out of the office starting 03/01/2004 and will not return until 03/05/2004. I will respond to your message when I return. In an emergency, please ...
49 oykusualaca Send Email Mar 3, 2004
3:55 am
Hi all; I've been trying to find out what i'm doing wrong but couldn't.Why am I keep receiving these messages back to back ?Any idea? "Possible attempt to...
50 shraddha more
its_shraddham Send Email
Mar 3, 2004
6:08 am
Hello Out of above 2 attached files I could run form.cgi from Browser but could not run test.cgi since it was giving error as 'Premature end of script' Can...
51 shraddha more
its_shraddham Send Email
Mar 5, 2004
7:42 am
Hello !!! I want to run .cgi files through web browser. The file test.cgi is stored in cgi-bin folder of apache. Right now, what i am doing is as follows... ...
52 Luis C
luisc9boca Send Email
Mar 9, 2004
3:30 pm
Hi!!! One way is to use perl in command line mode instead of creating an running a program. Here´s how perl -p i.bak -e 's/apples/oranges/g&#39; file This will...
53 Pradeep K
prad_kris Send Email
Mar 11, 2004
7:30 pm
Hi, Thanx for clearing all my previous doubts. Now, I have to open a new window and ask for username and password and shud submit or check the uname and ...
54 Andrew
king_of_shades Send Email
Mar 20, 2004
10:48 pm
Hello, Andrew here I am working on my first couple of major PERL programs, and I find myself wanting to create constants that are readable to subroutines or...
55 xrraj Send Email Mar 31, 2004
1:56 pm
use "constant"; module example: use constant PI => 4 * atan2(1, 1); use constant DEBUG => 0; raymond raj...
56 Neeraj Malve
neerajlinux Send Email
Apr 1, 2004
11:35 am
hi guys, 1 wrong question to right Group!!! Can anybody suggest me any good Coaching class/person who can teach perl?? please reply. thanks neeraj. ...
57 xrraj Send Email Apr 1, 2004
12:16 pm
where are you from ? raymond raj.x ... perl??...
Messages 28 - 57 of 2974   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help