Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 17903 - 17932 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17903
Make Your Opinions Count! Influence decision makers (For Indian Citizens Only) Looking for a source of extra income? There is a huge demand for everyday...
Anil
anil_jupiter
Offline Send Email
Feb 1, 2004
12:30 pm
17904
Make Your Opinions Count! Influence decision makers (For Indian Citizens Only) Looking for a source of extra income? There is a huge demand for everyday...
Anil
anil_jupiter
Offline Send Email
Feb 1, 2004
12:41 pm
17905
Hi guys, I just knocked up a simple script for a friend which is designed such that it requires a user to register with the script before it emails them a...
franki
frankhauptle
Offline Send Email
Feb 1, 2004
5:02 pm
17906
From: franki <franki@...> ... Then just install MIME::QuotedPrint and MIME::Base64 the same way. Actually if you happen to have the same version of...
Jenda Krynicky
jendaperl
Online Now Send Email
Feb 1, 2004
5:59 pm
17907
... Thanks, I was hoping that there was an easier way of sending attachments.. but no matter.. I'll see what I can do. rgds Franki...
franki
frankhauptle
Offline Send Email
Feb 1, 2004
6:51 pm
17908 droux@...
Send Email
Feb 2, 2004
11:21 am
17909
... Brian's braver than I am. Most ppl can recall a confusing and intermittent programming infancy but don't dare to relate the gory details, even though...
J.E. Cripps
cycmn@...
Send Email
Feb 2, 2004
12:32 pm
17910
Hi everyone, I am created this script to send e-mails (see below). I get this error when I try to run it: Number found where operator expected at ...
Leon
roastin
Online Now Send Email
Feb 3, 2004
2:28 pm
17911
I figured out my problem. Sorry for the spam. Thx again, Leon __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building...
Leon
roastin
Online Now Send Email
Feb 3, 2004
2:36 pm
17912
Hi, what is the difference between using "system" call and using ` `(back quotes) in perl ? suppose i have followinh shell script ... #!/bin/ksh echo "Before...
Madhu Reddy
saitech74
Offline Send Email
Feb 3, 2004
8:10 pm
17913
First: thanks again for all the help in picking a book. Now: I bought Tisdall's Beg Perl for Bioinformatics. I am trying to type and run a SIMPLE example in...
wadunn83
Offline Send Email
Feb 3, 2004
10:15 pm
17914
This may or may not be it - but I only use the ` command` when assigning the output of that command to a scalar or array. What does your error log say? ~Maria...
Maria K Meyers
compbrat75
Offline Send Email
Feb 3, 2004
10:27 pm
17915
I am just a little ahead of you and may be helpful. --The CPAN installs the Perl in some mysterious way according to specifications that probably few people...
John S Brigham
mrphysh@...
Send Email
Feb 3, 2004
10:45 pm
17916
... Doesn't Mac OSX come with vi? What could be better? Ooh, I'm gonna take heat for that one. Seriously, though, if there is a Notepad-like editor that lets...
Jeff Eggen
jeggen@...
Send Email
Feb 3, 2004
11:03 pm
17917
A mac using friend of mine swears by pagespinner.. http://www.optima-system.com/pagespinner/ but OSX is based on freeBSD so anything that works on that can...
franki
frankhauptle
Offline Send Email
Feb 3, 2004
11:15 pm
17918
$a = "Hello"; $b = "world"; if ($a == $b){ print "Fine\n"; } this is the code.... here the Fine is getting printed.... so actaully means that $a is equal to...
fd97616
Offline Send Email
Feb 4, 2004
1:23 am
17919
Because "==" is for numeric comparisons Use "eq"... As in If ($a eq $b) { ... From: fd97616 [mailto:fd97616@...] Sent: Tuesday, February 03, 2004 5:23 PM...
Fernando Luna
Fernando.Luna@...
Send Email
Feb 4, 2004
1:32 am
17920
Is there a way to look ahead in a file? For example, I am writing a perl script that changes one type of format to another, and it grabs a file line by line....
Electron One
thejoeshmoe
Online Now Send Email
Feb 4, 2004
2:34 am
17921
... You are not using warnings. Your code should always have use warnings; in it if you're using Perl 5.6 or later. If you're still using Perl 5.005, then...
Jeff 'japhy' Pinyan
evilffej
Offline Send Email
Feb 4, 2004
5:39 am
17922
... Well, you can store your current location $here_i_am = tell FILE; do some stuff while (<FILE>) { ... } and then restore your position: seek FILE,...
Jeff 'japhy' Pinyan
evilffej
Offline Send Email
Feb 4, 2004
5:39 am
17923
Hi, == is a numeric comparsion operator, so it assumes variables to be in numeric form. Since here variable values are non-numeric, they are treated as zeros...
rrreddy0211
Offline Send Email
Feb 4, 2004
9:06 am
17924
... http://www.cpan.org/ ... course. ... know. ] Another option could be to read the entire file into memory, if it's not too big. open( FH, "filename.ext" );...
daymobrew@...
daymobrew
Offline Send Email
Feb 4, 2004
9:48 am
17925
Is it possible to rename a directory. I'm using mkdir to make a directory but id like to rename it. Cheers Mand...
mandwahlin
Offline Send Email
Feb 4, 2004
3:35 pm
17926
... Jeff, Wonderfully MAC OS X is really UNIX. So from a terminal you can follow pretty much all the rules and instructions for using and working with PERL on...
Peter Dominey
pdominey
Online Now Send Email
Feb 4, 2004
3:44 pm
17927
... mandwahlin> Is it possible to rename a directory. I'm using mkdir to make a mandwahlin> directory but id like to rename it. rename() works on directories,...
merlyn@...
merlynstoneh...
Offline Send Email
Feb 4, 2004
3:59 pm
17928
http://www.computerhope.com/renamehl.htm#03 Example: Rename the directory chope to hope. rename c:\chope hope -Nathan ... From: mandwahlin...
List Account
list.account@...
Send Email
Feb 4, 2004
4:02 pm
17929
Hi folks, I've just started learning Perl. Could you please recommend some books for me. I have some programming experince in C. I already have "Learning Perl,...
A M
gr3ypilgrim
Offline Send Email
Feb 4, 2004
4:56 pm
17930
... Nothing is better than vi. Vi is the best editor in the world. I am a loyal unix user. I love vi. Ah, vi. Vi. ~Maria...
Maria K Meyers
compbrat75
Offline Send Email
Feb 4, 2004
5:01 pm
17931
Have you seen: http://books.perl.org ?? This may help: Beginners: http://books.perl.org/category/7 Categories: http://books.perl.org/categories I own:...
Brad Lhotsky
brad@...
Send Email
Feb 4, 2004
5:08 pm
17932
... Vi is an emacs macro to hide the power of a real editor from those who are not yet ready for it. <grins and returns to temple to wait for another novice> ...
painter_man
Offline Send Email
Feb 4, 2004
5:08 pm
Messages 17903 - 17932 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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