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 19798 - 19827 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
19798 Riviere Informatique ...
svdbeek Send Email
Nov 1, 2004
7:55 am
Use curdate() instead of now() Regards, Steven....
19799 Luinrandir Hernsen
Luinrandir Send Email
Nov 1, 2004
3:22 pm
OK.. ignore that I', using this for a CGI I am trying to do a "for" loop so that %5 of $MaxNum is incremented. here is the NON cgi code for those who are going...
19800 Paul Archer
tigger@... Send Email
Nov 1, 2004
3:29 pm
... (I don't have time to go over this in detail...) ...but one obvious thing is 'lt' is for string comparisons. You want '<=&#39; Paul ... There are two major...
19801 Charles K. Clarkson
charlesclarkson Send Email
Nov 1, 2004
5:26 pm
... That doesn't compile, You probably wanted to submit this. ... print qq|<td align="right"><SELECT NAME="$ItemName">\n|; for (my $v = 0; $v <= $MaxNum; $v +=...
19802 Jeff 'japhy' ...
evilffej Send Email
Nov 1, 2004
7:11 pm
... You're not *changing* $v0 at all. for (...; ...; $v0 += $MaxNum/20) { ... Uh, use < for numbers ALWAYS. -- Jeff "japhy" Pinyan % How can we ever...
19803 Luinrandir Hernsen
Luinrandir Send Email
Nov 1, 2004
7:58 pm
right, thanks... I keep forgeting that... Thanks! I have change the code, after doing som eresearch, in a while command... and got it working! HooBah! Lou ... ...
19804 Malcolm Mill
icthyst Send Email
Nov 2, 2004
9:00 pm
Hi, Newbie here having trouble with regex. I'm trying to parse an html file saved as text to find all instances of time. The parsed file is called...
19805 Charles K. Clarkson
charlesclarkson Send Email
Nov 2, 2004
9:38 pm
... Depends on your definition of valid. It will run. Without warnings turned on, it will run without any warnings. With warnings turned on, you'll see a...
19806 Jenda Krynicky
jendaperl Send Email
Nov 2, 2004
10:48 pm
From: Malcolm Mill <malcolm.mill@...> ... It's generaly not too good to try to parse HTML by regexps. Except if the HTML was generated by something and...
19807 Jeff 'japhy' ...
evilffej Send Email
Nov 2, 2004
11:09 pm
... That regex has SEVERAL things wrong with it. First of all, backreferences on the right-hand side should be $1, not \1. Second, quantifiers on parts of a...
19808 Malcolm Mill
icthyst Send Email
Nov 2, 2004
11:37 pm
... Hi Jenda, The book I'm working from is "Apache, MySQL, and PHP Web Development: For Dummies". It is a 7 books in 1 title, and has sections on Perl and ...
19809 Malcolm Mill
icthyst Send Email
Nov 2, 2004
11:52 pm
On Tue, 2 Nov 2004 16:57:42 -0500 (EST), Jeff 'japhy&#39; Pinyan ... Hi, Japhy. I wasnt sure how to use the backreference. The example from my book I based my...
19810 Jenda Krynicky
jendaperl Send Email
Nov 3, 2004
2:42 pm
From: Malcolm Mill <malcolm.mill@...> ... Try to read "perlretut&quot;. Either run perldoc perlretut or go to...
19811 calcfreak2003 Send Email Nov 3, 2004
9:05 pm
#i tried this print "Gimme something:"; $var = <STDIN>; chomp $var; print "Gimme a letter or string to replace:"; $var2 = <STDIN>; chomp $var2; print...
19812 merlyn@...
merlynstoneh... Send Email
Nov 3, 2004
10:35 pm
... calcfreak2003> #i tried this calcfreak2003> print "Gimme something:"; calcfreak2003> $var = <STDIN>; calcfreak2003> chomp $var; calcfreak2003> print "Gimme...
19813 Don Smith
login2001ca Send Email
Nov 4, 2004
2:35 pm
Greetings folks, This is a strange problem. I have a script (below) that writes text to a database. $notes seems to have a 255 character limit on it despite...
19814 Riviere Informatique ...
svdbeek Send Email
Nov 4, 2004
3:01 pm
Don't know enough about Access or ODBC limits, but are you maybe using a function to avoid overflow, such as substr, on the value to populate notes? That could...
19815 nikunj
nicck_par Send Email
Nov 4, 2004
3:46 pm
hi all...!!!! I am looking for a logic to look into a binary file...!!!! Can someone help me. Bye, Nicck....
19816 Paul Archer
tigger@... Send Email
Nov 4, 2004
4:04 pm
... Oh, where to start? Where to start? Your question can be simplified slightly to "I need help". More succinct, but just as useless, really. Try asking your...
19817 nicck_par Send Email Nov 4, 2004
4:18 pm
I have already mentioned long before...!!! Actually I m trying to open some binary file which is a image sofware in COFF format. and I want to get the symbols...
19818 Don Smith
login2001ca Send Email
Nov 4, 2004
5:59 pm
Thanks for the response Steven, I do pass all form variables through a subroutine to check for malicious code, however, I use the same sub in other scripts and...
19819 denizcan1983 Send Email Nov 4, 2004
6:35 pm
I wanna get information from a site which contain frames and dynamic content(jsp).I used lwp module but i can get only source code.The code i wrote is below. ...
19820 daymobrew@...
daymobrew Send Email
Nov 5, 2004
10:39 am
... I brought up the page in my browser and found that the URL for the frame with the games is: ...
19821 daymobrew@...
daymobrew Send Email
Nov 5, 2004
10:43 am
... sofware in COFF format. and I want to get the symbols inside it. I am new to perl so i havent try out any option but want to try out someting intially...
19822 nicck_par Send Email Nov 5, 2004
3:49 pm
Hi all, I want to find all the occurance of #ifdef and #ifndef in a c-source file. I tried out following ... open(INFILE,$ARGV[0]); $inline=<INFILE>; if...
19823 Jeff Eggen
theoreticaljedi Send Email
Nov 5, 2004
4:12 pm
... The <> operator only returns one line from the file in scalar context. You only have one line of the file in your $inline variable. If you want to print...
19824 Allan Dystrup
allan_dystrup Send Email
Nov 5, 2004
4:16 pm
... source file. I tried out following ... ... #!/usr/bin/perl use strict; use warnings; foreach ( <DATA> ) { print if m/^#if(n|)def/; } __END__ #ifdef or ...
19825 nicck_par Send Email Nov 5, 2004
4:48 pm
Thanks alot..!!!! can i also transfer these symbols and its values to the excel format...!!!! Bye, Nicck ... The <> operator only returns one line from the...
19826 gaoywynfm Send Email Nov 5, 2004
4:59 pm
hey all I recently re-financed my mortgage for free even though I have BAD credit. They even gave me a great rate! Take a look at this service... ...
19827 Mark Stewart
markstewart72@... Send Email
Nov 6, 2004
1:53 am
Hi - im new here, Ive heard from a friend that this is possible, Where a cgi script can 'log in' to a service & do stuff... - has someone got a dummies guide -...
Messages 19798 - 19827 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