Search the web
Sign In
New User? Sign Up
Perl_Official · Perl . CGI . Shell script
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 1492 - 1521 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1492
Can anyone Provide examples of setting Cookies and removing Cookies to remember Someones name Once logged into a page .? thanks...
Brian E Boothe
codemage67
Offline Send Email
Apr 5, 2004
2:32 pm
1493
... Brian> Can anyone Provide examples of setting Cookies and removing Cookies to Brian> remember Someones name Once logged into a page .? thanks ...
merlyn@...
merlynstoneh...
Online Now Send Email
Apr 5, 2004
3:43 pm
1494
Hello Friends, I am silent member for this group. Pls spend 2 min for me. Right now i am working in Research Institute on small projects ( Like Network Printer...
Mahi G
mahiperl@...
Send Email
Apr 7, 2004
9:14 am
1495
Good Day, Its better future to learn perl and utilize it in linux whereby it is very powerful in executing shell commands. Bye ... ===== Kumar s/o Arjunan ...
Kumar Arjunan
amyarjun
Offline Send Email
Apr 9, 2004
6:04 pm
1496
I'm sure this is very simple, tried searching google for 2 hrs. Problem ======= How do I check if $number is a positive number to 2 decimal places? ie. 12.12...
brownuk5
Offline Send Email
Apr 19, 2004
4:54 am
1497
I'm sure this is very simple, tried searching google for 2 hrs. Problem ======= How do I check if $number is a positive number to 2 decimal places? ie. 12.12...
brownuk5
Offline Send Email
Apr 19, 2004
4:54 am
1498
... I think you mean: "Check if $number CONVERTED TO A STRING has exactly two significant digits after the decimal point", because for a floating point number,...
fischron.external@...
dodekaedergu...
Offline Send Email
Apr 19, 2004
6:04 am
1499
Try this simple script? ############# $number="1.21"; if( ($number=~/\.(\d{2}/)&&($1>0)) { isvalid... } ############# mean: if $number contain '.' with exactly...
senarai surat
spreq
Offline Send Email
Apr 19, 2004
6:11 am
1500
Well i think the script below is almost correct except it wont be able to check if the number is positive i.e. if $number="-1.21" then the script will fail....
ashish_moudgil
Offline
Apr 23, 2004
4:45 pm
1501
Hi Everyone I already have Apache server running well and have been abe to run PERL scripts. Hpwever, being new to the stuff,I need help to develop a...
ceebiz2000
Offline
Apr 26, 2004
2:54 am
1502
Hi I am new to perl I would like your help for the following I want to write a script which would poll a web page, say every two minutes, and record the...
agyeya_gupta
Offline
Apr 29, 2004
11:59 pm
1503
... Your question's a bit vague, do you need the part where (1) it does this every two minutes, (2) the page parser, or (3) the code that gets pages? for (1) ...
Emanuel G Calso
egcalso
Offline Send Email
May 1, 2004
6:41 am
1504
Hi Im trying to incorporate a google search bar too search my web site and google its self. Ive found the code from google, but it does not work as the sites...
tegai1
Offline Send Email
May 2, 2004
5:57 am
1505
Hi, I am new to perl language and got the basic information about perl from the websites. What are the available types, control structures etc.. One of the key...
Syed Qasim Raza
syedqasimrazaa
Offline Send Email
May 3, 2004
8:23 am
1506
Hi, I am new to perl language and got the basic information about perl from the websites. What are the available types, control structures etc.. One of the key...
Syed Qasim Raza
syedqasimrazaa
Offline Send Email
May 3, 2004
8:24 am
1507
... For that, i think you'll need to create your own search engine. Or maybe d/l one... i don't know where -- eman calso http://www.bloodpet.tk/ Cleanliness is...
Emanuel G Calso
egcalso
Offline Send Email
May 3, 2004
8:26 am
1508
... Does http://search.cpan.org/~mirod/XML-Twig-3.15/ help?...
fischron.external@...
dodekaedergu...
Offline Send Email
May 3, 2004
8:34 am
1509
Hi Syed, XML::Simple is answer to your question, find more about this module @ http://search.cpan.org/~grantm/XML-Simple-2.12/lib/XML/Simple.pm best luck ...
Neeraj Malve
neerajlinux
Offline Send Email
May 3, 2004
5:31 pm
1510
I am creating a program that will parse a file based on regular expressions, and am having a little trouble figuring out how to parse a particular part of it...
Trace
crazzycodemo...
Offline Send Email
May 4, 2004
6:27 pm
1511
It will help to know what you want to do with the information. Do you only have these two types of records (City-State and Labels-Amount)? If so, I assume you...
Victor
perl_jam03
Offline Send Email
May 4, 2004
10:52 pm
1512
... (not tested!) / ^ \s* # skip initial white space (\S.*\S|\S) # first field, embedded white space allowed \s+ # separating white space...
fischron.external@...
dodekaedergu...
Offline Send Email
May 5, 2004
5:58 am
1513
I'm trying to sort some numerical values in ascending order from some output that I print to screen. Would anyone know how to do this? Steve...
perl_1978
Offline
May 8, 2004
12:48 am
1514
Use sort function. raymond raj ... some...
xrraj
Offline
May 8, 2004
4:57 am
1515
I guess you mean "from some input source before I use it as output that I print to screen", right? Look into getting you numbers into an array variable like...
El Rex
perl_jam03
Offline Send Email
May 8, 2004
4:58 am
1516
This sounds familar. I will check the docs and see what it says about the sort function. Thanks ... that ... @numbers, and ... before '7', so ... on ... how ...
perl_1978
Offline
May 8, 2004
9:30 pm
1517
I tried the sort function and it's not working because I know my code is wrong. Could someone shed some light as to what I'm missing here? Below is the actual...
perl_1978
Offline
May 13, 2004
12:42 am
1518
Trying to run system commands from ActivePerl on Windows. I tried adding the following lines to my perl script to run commands, but does not work. How can I...
Jeff Cunningham
jclefty2000
Offline Send Email
May 13, 2004
12:43 am
1519
... This statement doesn't make much sense to me. Check out the content of @uid_sort. IMO it should contain only 1 element, since you are assigning a scalar to...
fischron.external@...
dodekaedergu...
Offline Send Email
May 13, 2004
5:33 am
1520
There are several logic issues, but let me go through the ones I found. 1) I don't know what you want to do with the "ssh $srv_name cat /etc/passwd|" line. If...
El Rex
perl_jam03
Offline Send Email
May 13, 2004
5:51 am
1521
Actually, step 1 is fine because I'm going to a remote server and not local. As for step 2 and 3 - thanks for the advice about my crazy code. I just needed a...
perl_1978
Offline
May 13, 2004
2:40 pm
Messages 1492 - 1521 of 2062   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