Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perl-beginner · Perl Beginners Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3765
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 25774 - 25809 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
25774 Mick Watson
mw55309 Send Email
Oct 2, 2007
9:51 am
Hi I am not a beginner to perl, but am a beginner to this problem! I create a perl object, read about 500,000 rows from a MySQL database, populate some...
25775 Ramesh Polepalli
ramesh_ps1 Send Email
Oct 3, 2007
5:36 am
I Guess, The problem is due to the limitation of screen buffer. I would suggest you to, Try redirecting the output to a file instead of screen and share your...
25777 Jenda Krynicky
jendaperl Send Email
Oct 3, 2007
10:18 am
... I don't think you are looking at the right place. Though it's hard to suggest where to look. What does it do if you add something like END {print "Exiting...
25778 michael watson (IAH-C)
mw55309 Send Email
Oct 3, 2007
10:27 am
Hi I have "print STDERR..." statements throught my script, with a call to `date` appended so I know when it happens. I also have similar statements before and...
25779 michael watson (IAH-C)
mw55309 Send Email
Oct 3, 2007
2:12 pm
Hmmm, OK, I will try this, thank you, but as there are only 17000 rows of output, is it really possible perl takes 20 mins to write that to a file?! ...
25780 John Francini
francini@... Send Email
Oct 3, 2007
2:45 pm
Not likely; it's just that output to STDERR/STDOUT is buffered and isn't guaranteed to come out at the moment it's generated unless you've set $| to 1 on...
25781 selva kumar
templateteam@... Send Email
Oct 4, 2007
3:53 am
Hi Hernán, I am using PC version. I think this is UniX command. Is there any other way to do this in PC version. Regards Anil Hi! i had the same problem and I...
25783 michael watson (IAH-C)
mw55309 Send Email
Oct 4, 2007
12:45 pm
Hi Thanks for the response. The data is directed to a file, not to the screen, and there are plenty of new-lines in there so perl should be flushing it's...
25784 John Francini
francini@... Send Email
Oct 4, 2007
12:46 pm
Ah, but Perl doesn't always flush output out to the terminal as it's generated unless you have the special variable $| (or $AUTOFLUSH if you used English) set...
25785 merlyn@...
merlynstoneh... Send Email
Oct 4, 2007
1:31 pm
... michael> Hmmm, OK, I will try this, thank you, but as there are only 17000 rows michael> of output, is it really possible perl takes 20 mins to write that...
25787 a_z0_9_blah Send Email Oct 4, 2007
3:58 pm
... other way to do this in PC version. ... Hi Anil You will need to go to http://www.foolabs.com/xpdf/ to download xpdf, (look for the Windows version in the...
25788 selva kumar
templateteam@... Send Email
Oct 6, 2007
8:58 am
Hello All, Is there any possibilities to convert mathml coding to mathtype acceptable eps via perl. Can anyone suggest me how can i achive this. Regards ...
25789 Greg
ggarri2910 Send Email
Oct 7, 2007
4:42 pm
Hey Gang- I can't seem to figure this out. This script used to work when I ran it on an old machine. This was several years ago however. I can't think of...
25792 Dukelow, Don
dondukelow Send Email
Oct 8, 2007
4:47 pm
I have a scalar ($port) that can contain any one of the following hme0, eri0, gfe0, ce0. The number part can be anywhere from '0' and probably won't go any...
25793 Jeff Pinyan
evilffej Send Email
Oct 8, 2007
5:44 pm
... So $port is a string of lowercase letters followed by a number (one or more digits), and you'd like to add a space between the letters and numbers? The...
25795 Lou Hernsen
luinrandir Send Email
Oct 8, 2007
7:42 pm
Is there a book on Perl and MySQL that gives code samples.... I have a file, 200x200 characters. I just want to read a 7x7 area of the file. Thats 7 charecters...
25796 Dukelow, Don
dondukelow Send Email
Oct 8, 2007
8:19 pm
Gret idea but not quite1 Using the following code. print "$port&#92;n"; $port =~ s/([a-z])(&#92;d)/$1 $2/; print "$1 == $2\n"; I get the results, It drops the first...
25797 Jeff Pinyan
evilffej Send Email
Oct 8, 2007
8:25 pm
... You're not using it correctly; don't print $1 or $2 afterwards, print $port. The code I gave changes $port for you. -- [Mary said,] "Do whatever he tells...
25798 Dukelow, Don
dondukelow Send Email
Oct 8, 2007
8:54 pm
Thank you that worked regular expressions isn't my strong point, but I'm wotking on it. ... Don Dukelow HP UNIX OVO Enrollment Hewlett-Packard (Canada) Co. ...
25799 Dukelow, Don
dondukelow Send Email
Oct 8, 2007
9:13 pm
This also works! $port =~ s/(\D)(&#92;d)/$1 $2/; ... Don Dukelow HP UNIX OVO Enrollment Hewlett-Packard (Canada) Co. e-mail: dukelow@... URL: http://www.hp.ca...
25800 Ryan J Nauman
pwn_escobar Send Email
Oct 10, 2007
2:03 pm
I wrote a small script to interact with a user over the web to search a dictionary in multiple ways. It takes approximately 4 seconds to build my structured...
25801 Lou Hernsen
luinrandir Send Email
Oct 10, 2007
2:27 pm
I have a 200 x 200 charecter file. Thats 200 lines, each having 200 charecters. Currently I have to read the whole file and then pick out the 7 lines, 7 ...
25802 Emen Zhao
emenzhaowork@... Send Email
Oct 10, 2007
3:06 pm
Here is a simple one liner # perl -wnl -e '/reg/ and print' file_name note: customize reg part to fit your needs ... [Non-text portions of this message have...
25803 Lou Hernsen
luinrandir Send Email
Oct 10, 2007
3:15 pm
Thank you.. but I have no clue what you just wrote. Is that a perl command? something that goes to a module? or something to look up on line? I admit to not...
25804 merlyn@...
merlynstoneh... Send Email
Oct 10, 2007
3:33 pm
... Lou> Is that a perl command? something that goes to a module? Lou> or something to look up on line? Lou> I admit to not knowing alot..... Perhaps you...
25805 Lou Hernsen
luinrandir Send Email
Oct 10, 2007
3:52 pm
I have reviewed how to use SEEK, TELL, GETC and I am able to use them quite well. I was hoping that GETC might have a command like $VAR = GETC(FILE, position, ...
25806 merlyn@...
merlynstoneh... Send Email
Oct 10, 2007
4:01 pm
... Lou> As you can see, I have a clue as to what I am doing. Lou> I simply can't find any info on a better GETC command. That's because nobody uses getc()....
25807 Jenda Krynicky
jendaperl Send Email
Oct 10, 2007
4:07 pm
From: "Lou Hernsen" <lhernsen1015@...> ... 300*300 is not that much, if you know how to do it using substr(), read the whole file and use the...
25808 Lou Hernsen
luinrandir Send Email
Oct 10, 2007
5:06 pm
OK thanks.. thats what I am doing. ... From: <merlyn@...> To: "Lou Hernsen" <lhernsen1015@...> Cc: <perl-beginner@yahoogroups.com> Sent:...
25809 Lou Hernsen
luinrandir Send Email
Oct 10, 2007
5:07 pm
OK thanks What size file is considered large? I am writing an online game.. still... after 3 years and several rewrites as I learn more.. If nothing else its...
Messages 25774 - 25809 of 27459   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