More than 300 XP icons designed specifically for database applications, business applications, internet applications and websites. Number Of Icons: 300 File...
19191
Kathryn Tate
kloutot
Jul 2, 2004 9:29 pm
I am reading from a file with 4 columns of fixed length that are delimited by spaces: Names Number Dept Salary After manipulating the data, I then...
19192
chcst53
Jul 3, 2004 12:48 am
... sprintf() ... Try %-15s to left align. %15s right aligns, which I don't think you want. Try this, my @a = qw/ Names Number Dept Salary /; printf...
19193
Kathryn Tate
kloutot
Jul 3, 2004 5:18 am
... This will not expand each variable within a foreach loop. I am printing out from a foreach loop. Left or right justifying doesn't work. Anything else you...
19194
Kathryn Tate
kloutot
Jul 3, 2004 5:40 am
What does $_[0] stand for? Thanks in advance, Kathryn...
19195
Kathryn Tate
kloutot
Jul 3, 2004 6:08 am
I am not allowed to use the cmp operator to sort. And this will not sort plus mucho problemo with printf(): sub print_employee { ($person, $number, $dept,...
19196
Allan Dystrup
allan_dystrup
Jul 3, 2004 8:20 am
... Take a look at: http://iis1.cps.unizar.es/Oreilly/perl/learn/ch08_04.htm best regards / allan dystrup...
19197
Allan Dystrup
allan_dystrup
Jul 3, 2004 10:29 am
... sort ... A fast answer and some pointers at where your program goes astray: in the while( @employee = <SOURCE> } { ... @x=sort(@employee); foreach...
19198
Charles K. Clarkson
charlesclarkson
Jul 3, 2004 1:22 pm
... It is the first element of @_. @_ is used by perl to send arguments to a subroutine. HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328...
19199
merlyn@...
merlynstoneh...
Jul 3, 2004 1:52 pm
... Allan> Take a look at: Allan> http://[[illegal copy of Perl CD-ROM]] Please do not advertise pirated copies of the O'Reilly CD-ROMs here. That offends me...
19200
merlyn@...
merlynstoneh...
Jul 3, 2004 1:56 pm
... Kathryn> I am not allowed to use the cmp operator to sort. I don't understand this phrase, so I didn't read the rest of your message. How are you "not...
19201
Charles K. Clarkson
charlesclarkson
Jul 3, 2004 2:12 pm
... Is this homework? It is important that you do your own homework. Most teachers won't assign something you can't figure out from previous lessons....
19202
anguilla1969@...
anguilla1969
Jul 3, 2004 2:18 pm
You can also using "shift" when assigning variables passed to a subroutine. for example: sub myRoutine () { $arg1 = $_[0]; $arg2 = $_[1]; $arg3 = $_[2]; } is...
19203
merlyn@...
merlynstoneh...
Jul 3, 2004 2:43 pm
... anguilla1969> You can also using "shift" when assigning variables passed to a subroutine. for example: anguilla1969> sub myRoutine () { anguilla1969>...
19204
Kathryn Tate
kloutot
Jul 3, 2004 7:02 pm
... Absolutely. But we are allowed to get assistance where needed--as long as someone isn't writing the code for you. I am simply asking for tips on printf()...
19205
Kathryn Tate
kloutot
Jul 3, 2004 7:04 pm
Thank you so much. We have gone over hashes so that is allowed in our code. I will try this as I cannot use the cmp operator--as far as I know. Very nice. ...
19206
Kathryn Tate
kloutot
Jul 3, 2004 7:06 pm
Thanks to all who made such speedy replies to my awkward questions. I am going to use a hash to sort, as Allan suggested. And I will just have to fight with...
19207
Kathryn Tate
kloutot
Jul 3, 2004 8:22 pm
Here is my algorithm: @employee = sort { ($last_one, $first_one)=split(",", $a); ($last_two, $first_two)=split(",", $b); return($first_one cmp $first_two || ...
19208
chcst53
Jul 3, 2004 11:08 pm
... If the last name comes after the first name, separated by a comma, then your split above puts the last name into '$first_one' and '$first_two'. In your...
19209
altordai
Jul 4, 2004 2:53 am
Hello, I am a new user of http://baseportal.com It's a free database portal, great features (database limit=4GB, supports any Perl script, 6 database templates...
19210
merlyn@...
merlynstoneh...
Jul 4, 2004 3:21 am
... altordai> I am a new user of http://baseportal.com altordai> It's a free database portal, great features (database limit=4GB, altordai> supports any Perl...
19211
Jeevan
v_jeevan21
Jul 4, 2004 3:28 am
i am a newbie...and don't know anything about pearl...but wants to learn it...how do i start... please help me......
19212
Mohammad AlianNejadi
molisoftt
Jul 4, 2004 7:12 am
Hi I am a beginner in perl. I wanted to know if I can have perl in www.tripod.com free?! Please send me if you know. Thanks Bye www.geocities.com/m_alian14 ...
19213
Alan
acummingsus
Jul 4, 2004 9:48 am
Hi, Why, when the near the bottom below sub routine is added in, brings a global (scope, evidently) error as it reports that the @messg is used only once?...
19214
eman
egcalso
Jul 4, 2004 1:22 pm
On Sun, 04 Jul 2004 07:11:55 -0000, Mohammad AlianNejadi ... AFAIK, you can already use Perl on tripod... but the only modules they have are their set of...
19215
merlyn@...
merlynstoneh...
Jul 4, 2004 2:17 pm
... Jeevan> i am a newbie...and don't know anything about pearl...but wants to Jeevan> learn it...how do i start... The pointers in http://learn.perl.org will...
19216
merlyn@...
merlynstoneh...
Jul 4, 2004 2:17 pm
... eman> AFAIK, you can already use Perl on tripod... but the only modules they eman> have are their set of Tripod*.pm and CGI.pm eman> Just save your scripts...
19217
J.E. Cripps
cycmn@...
Jul 4, 2004 10:03 pm
... I assume you mean "Perl" One introduction: http://www.perlfaq.com...
19218
Phillip Eshelbrenner
phil_har@...
Jul 4, 2004 10:26 pm
[Non-text portions of this message have been removed]...
19219
namon20
Jul 6, 2004 4:48 pm
Hi I am new to PERL programming and I am having some real problem to see my out put pf perl script in browser ... I am using windows 2000 machine I download...