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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 19799 - 19828 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
19799
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...
Luinrandir Hernsen
Luinrandir
Offline Send Email
Nov 1, 2004
3:22 pm
19800
... (I don't have time to go over this in detail...) ...but one obvious thing is 'lt' is for string comparisons. You want '<=' Paul ... There are two major...
Paul Archer
tigger@...
Send Email
Nov 1, 2004
3:29 pm
19801
... 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 +=...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Nov 1, 2004
5:26 pm
19802
... You're not *changing* $v0 at all. for (...; ...; $v0 += $MaxNum/20) { ... Uh, use < for numbers ALWAYS. -- Jeff "japhy" Pinyan % How can we ever...
Jeff 'japhy' Pinyan
evilffej
Offline Send Email
Nov 1, 2004
7:11 pm
19803
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 ... ...
Luinrandir Hernsen
Luinrandir
Offline Send Email
Nov 1, 2004
7:58 pm
19804
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...
Malcolm Mill
icthyst
Offline Send Email
Nov 2, 2004
9:00 pm
19805
... 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...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Nov 2, 2004
9:38 pm
19806
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...
Jenda Krynicky
jendaperl
Offline Send Email
Nov 2, 2004
10:48 pm
19807
... 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...
Jeff 'japhy' Pinyan
evilffej
Offline Send Email
Nov 2, 2004
11:09 pm
19808
... 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 ...
Malcolm Mill
icthyst
Offline Send Email
Nov 2, 2004
11:37 pm
19809
On Tue, 2 Nov 2004 16:57:42 -0500 (EST), Jeff 'japhy' Pinyan ... Hi, Japhy. I wasnt sure how to use the backreference. The example from my book I based my...
Malcolm Mill
icthyst
Offline Send Email
Nov 2, 2004
11:52 pm
19810
From: Malcolm Mill <malcolm.mill@...> ... Try to read "perlretut". Either run perldoc perlretut or go to...
Jenda Krynicky
jendaperl
Offline Send Email
Nov 3, 2004
2:42 pm
19811
#i tried this print "Gimme something:"; $var = <STDIN>; chomp $var; print "Gimme a letter or string to replace:"; $var2 = <STDIN>; chomp $var2; print...
calcfreak2003
Offline Send Email
Nov 3, 2004
9:05 pm
19812
... calcfreak2003> #i tried this calcfreak2003> print "Gimme something:"; calcfreak2003> $var = <STDIN>; calcfreak2003> chomp $var; calcfreak2003> print "Gimme...
merlyn@...
merlynstoneh...
Offline Send Email
Nov 3, 2004
10:35 pm
19813
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...
Don Smith
login2001ca
Offline Send Email
Nov 4, 2004
2:35 pm
19814
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...
Riviere Informatique ...
svdbeek
Offline Send Email
Nov 4, 2004
3:01 pm
19815
hi all...!!!! I am looking for a logic to look into a binary file...!!!! Can someone help me. Bye, Nicck....
nikunj
nicck_par
Offline Send Email
Nov 4, 2004
3:46 pm
19816
... 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...
Paul Archer
tigger@...
Send Email
Nov 4, 2004
4:04 pm
19817
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...
nicck_par
Offline Send Email
Nov 4, 2004
4:18 pm
19818
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...
Don Smith
login2001ca
Offline Send Email
Nov 4, 2004
5:59 pm
19819
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. ...
denizcan1983
Offline Send Email
Nov 4, 2004
6:35 pm
19820
... I brought up the page in my browser and found that the URL for the frame with the games is: ...
daymobrew@...
daymobrew
Offline Send Email
Nov 5, 2004
10:39 am
19821
... 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...
daymobrew@...
daymobrew
Offline Send Email
Nov 5, 2004
10:43 am
19822
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...
nicck_par
Offline Send Email
Nov 5, 2004
3:49 pm
19823
... 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...
Jeff Eggen
theoreticaljedi
Offline Send Email
Nov 5, 2004
4:12 pm
19824
... source file. I tried out following ... ... #!/usr/bin/perl use strict; use warnings; foreach ( <DATA> ) { print if m/^#if(n|)def/; } __END__ #ifdef or ...
Allan Dystrup
allan_dystrup
Offline Send Email
Nov 5, 2004
4:16 pm
19825
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...
nicck_par
Offline Send Email
Nov 5, 2004
4:48 pm
19826
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... ...
gaoywynfm
Offline Send Email
Nov 5, 2004
4:59 pm
19827
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 -...
Mark Stewart
markstewart72@...
Send Email
Nov 6, 2004
1:53 am
19828
... Mark> Hi - im new here, Ive heard from a friend that this is possible, Where Mark> a cgi script can 'log in' to a service & do stuff... Do you mean in...
merlyn@...
merlynstoneh...
Offline Send Email
Nov 6, 2004
1:59 am
Messages 19799 - 19828 of 26720   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