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 18840 - 18869 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
18840
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,indefintely, say every two minutes, and...
Agyeya Gupta
agyeya_gupta
Offline Send Email
May 1, 2004
7:10 am
18841
Hi, A question about regexp (in perl) : I have two regexp'es : 1) ^[\x2D_%a-z\x91\x9B\x86A-Z\x92\x9D\x8F0-9]+$ 2) ^unknown$ I want (for good reasons) to...
Allan Dystrup
allan_dystrup
Offline Send Email
May 1, 2004
7:40 am
18842
Well, I hacked up a workaround using : $Filter = ^([^\x2D_%a-z\x91\x9B\x86A-Z\x92\x9D\x8F0-9]+)|(UnKnown)$ and reversing the test as: next if ( $Field =~...
Allan Dystrup
allan_dystrup
Offline Send Email
May 1, 2004
10:31 am
18843
... Ok: $rx1 = qr/[\x2D_%a-z\x91\x9B\x86A-Z\x92\x9D\x8F0-9]+$/; $rx2 = qr/unknown$/; if ($str =~ /^(?=$rx1)(?!$rx2)/) { # matches rx1 and not rx2 } That's how...
Jeff 'japhy' Pinyan
evilffej
Offline Send Email
May 1, 2004
4:08 pm
18844
... Adam> Frankly, I was influenced also a bit by exasperation. Adam> I have something that I need to do that *requires* Adam> me to either (a) know how to use...
merlyn@...
merlynstoneh...
Online Now Send Email
May 1, 2004
4:58 pm
18845
Hi, this script should check whether a string contains an IP address or not. When I run it everything seems OK, but I miss the values of $ip and $string in the...
leifedvin
Offline Send Email
May 2, 2004
12:23 pm
18846
Hi Jeff, This was just the solution i was lookung for, thanks a bucket! The problem with reversing a logically straight forward regexp (as you have to, not...
Allan Dystrup
allan_dystrup
Offline Send Email
May 2, 2004
12:29 pm
18847
Hi Leif Try: ____________________________________________________________________ #!/usr/bin/perl #ip_address.plx use warnings; use strict; my ($ip, $string); ...
Allan Dystrup
allan_dystrup
Offline Send Email
May 2, 2004
12:51 pm
18848
Btw Leif, Apart from the syntactic issues dealt with below, there is the semantic issue of a "well formed IP address". see for instance : Quote :...
Allan Dystrup
allan_dystrup
Offline Send Email
May 2, 2004
1:42 pm
18849
Hello Does someone here have a way to use SQLs (or whatever else) between Perl and Microsoft Access? Thanks, Nadav Hareven P.S. Please don't tell me not to use...
Nadav Hareven
nadavdrorhar...
Offline Send Email
May 3, 2004
3:25 am
18850
... How are you accessing the db? CGI, command line, etc. What operating system are you using? IIS, Win32, *nix, etc. Do you have access to ODBC? Will you be...
Charles K. Clarkson
charlesclarkson
Offline Send Email
May 3, 2004
4:00 am
18851
First, you can "use DBI" and connect to your access DB if you have it registered on the server. That is what I am doing right now. Second, why is it not good,...
Dustin Smith AKA GIDu...
gidustin
Offline Send Email
May 3, 2004
5:16 am
18852
Hi I am trying to use the Module WWW::Mechanize. The aim is to scrape info from a web page and put it into an MySql Table. The info available on the web page...
Agyeya Gupta
agyeya_gupta
Offline Send Email
May 3, 2004
8:24 am
18853
From: Dustin Smith AKA GIDustin <dustin@...> ... Access was originaly designed as a "one user" database and has been known to break under heavy load...
Jenda Krynicky
jendaperl
Offline Send Email
May 3, 2004
12:09 pm
18854
... Sorry for not replying, but what help do you need exactly? I mean, what's wrong with your script? -- eman calso http://www.bloodpet.tk/ After living in New...
Emanuel G Calso
egcalso
Offline Send Email
May 3, 2004
12:47 pm
18855
Hi all. a cgi script post data to a perl script located in a different network. that perl script address a module which opens a directory on that network and...
roish1973
Offline Send Email
May 3, 2004
1:24 pm
18856
Hiya, I have two Perl scripts whose functionality I'd like to amalgamate. I've been using the first script to send mass mail to our users. It was fine for...
Odhiambo Washington
pipinD
Offline Send Email
May 3, 2004
1:32 pm
18857
... I couldn't download your scripts (your server appears to be trying to execute them), so I'm not sure if your problem is how to send attachments or how to...
Bob Showalter
bshow12
Offline Send Email
May 3, 2004
2:47 pm
18858
... How to send attachments is not the problem. I played with MIME-Lite and saw how it is done, albeit in a simple way. What I want is to combine the...
Odhiambo Washington
pipinD
Offline Send Email
May 3, 2004
3:31 pm
18859
From: "roish1973" <roi__@...> ... If something works from the command line, but does not via CGI the most likely culprit is permissions (and the second...
Jenda Krynicky
jendaperl
Offline Send Email
May 3, 2004
4:18 pm
18860
Hi All, I have about 15 items in a flat file that I have set into an array and a template file that have the spots for each item marked off with the name in...
stephencopleyus
Offline Send Email
May 4, 2004
3:04 am
18861
... Have you looked at the Text::Template module? It can do this. The docs are fairly straight forward. HTH, Charles K. Clarkson -- Mobile Homes Specialist 254...
Charles K. Clarkson
charlesclarkson
Offline Send Email
May 4, 2004
3:29 am
18862
... can ... as ... roi: Hi. thanks for your help. what i'm tring to do is to read a directory of a network server, and select one of the folder files. the...
roish1973
Offline Send Email
May 4, 2004
7:32 am
18863
... To access admin shares the easiest way is probably to add the web server user to the Administrators group. For non-admin shares you could add the web...
daymobrew@...
daymobrew
Offline Send Email
May 4, 2004
10:25 am
18864
well I installed 5.8.4 Perl and tried to use alarm on win32 with strange results. $SIG{ALRM} = sub { die "Alarm!\n" }; alarm 2; my $ans = <STDIN>; chomp($ans);...
perlmedian
Offline Send Email
May 4, 2004
3:16 pm
18865
... You obviously haven't read the documentation for the alarm function: perldoc -f alarm...
Dave Gray
yargevad
Online Now Send Email
May 4, 2004
3:55 pm
18866
Obviously I have and tested the situation on my Solaris build of Perl 5.8.4. The code I supplied works as expected on Solaris Perl 5.8.4 but not on my Windows...
perlmedian
Offline Send Email
May 4, 2004
4:11 pm
18867
From: "roish1973" <roi__@...> ... Depends on your web server. If you are running MS IIS then the scripts are most likely being run under the...
Jenda Krynicky
jendaperl
Offline Send Email
May 4, 2004
4:52 pm
18868
I get permission denied when trying to chmod a nfs mounted file or directory. I know I'm running as 'nobody' and that's the problem but what can I do? I'm in a...
greg.hering@...
glhering
Offline Send Email
May 4, 2004
5:55 pm
18869
... Oh. I see what you're trying to do. My bad. That's not really a beginner question :) There are some useful hints here: ...
Dave Gray
yargevad
Online Now Send Email
May 4, 2004
6:16 pm
Messages 18840 - 18869 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