.+/Surname/g;
Which doesn't seem to Match.
Any help is appreciated.
Barry
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
Inflate.pm line 64.
cpan>
Has anyone seen this or have an idea for how to solve it.
Barry
Digest::MD5 Compress::Zlib Archive::Tar Bundle::libnet
Term::ReadKey CPAN::WAIT CPAN and the following items had problems
during
recursive bundle calls: Data::Dumper Net::Cmd Net::Telnet
== end of CPAN messages =
Any help would really be appreciated.
Regards,
Barry.
ching MSDN and the Knowledge Base for
"Global Address List" (GAL). The GAL is the common name in
Exchange-speak for what you are calling the Contacts folder on the
server. My experience with CDO is limited to OLE-DB/ADO/VBScript, so
alas, that's all I can tell you.
Regards,
--
On Thursday, Jul 10, 2003, at 13:07 US/Eastern, Pete Emerson wrote:
Barry,
I just wrote my own version of your script. Not that it's better than
yours, just different. I've learned a lot from this list by seeing how
people do things differently than me! I hope you find my version
h
more
robust against user error, better form, with readability and
maintainability being priorities. Also, I am wondering if my approach
is being warped by my years of Microsoft-based development. In other
words, is this thing Perlesque? The script is posted below.
Thanks in advance,
--
Ba
This question should go to:
http://lists.mysql.com/list.php?list=mysql#b
You can try this in MySQL:
SELECT company, date, SUM(sales) AS `totalsales`, SUM(cost) AS
`totalcost`
FROM tablename
GROUP BY company, date
ORDER BY company, date
On Wednesday, Jul 9, 2003, at 13:59 US/Eastern, Paul Kraus
. ${$mailings{$form_name}}{$key} . "\n";
}
I have no idea what this syntax is saying or doing and why the two
different forms of the hash reference are working.
Can some guru explain?
Thank you
Barry Kingsbury
Etnus, LLC.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
}
So a URL could come in like so:
http://whatever.com/cgi-bin/script.cgi?a=whatever;b=somthing;c=this
Now you have values for a, b and c...
But I am sure there are a lot of better ways to do it.
CGI.pm can handle parsing of a URL and I believe would be safer
than this type of thing.
Barry
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
t's pretty simple. For example, use the search command to see
what modules are installable and the install command to install them.
Barry Kingsbury
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Thanks. It turns out that wasn't my problem at all. I had a \n
character midway through and I didn't know about /gs for those
characters. It was the data, not the code.
-Original Message-
From: Bob Showalter [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 2:54 PM
ng and what
have you but it just won't work. Here's the code, maybe you can help me
out. Note: the bold tags are just there while I'm testing it, not what
it's going to be used for.
$body =~ s/\{\{(.*?)\}\}/\$1\<\/b\>/g;
Barry Jones
DATABUILT, Inc. The Global
What type of functions are built in to perl for arrays?
Mainly, I'm looking to find out how to see how many elements are in an
array without counting them, but I was wondering about others too.
What about hashes?
Barry Jones
DATABUILT, Inc. The Global AEC Information Company
1476 Fo
Are you sure that you need them run parallel? I could be wrong, but I
don't think it's going to make it go any faster unless you're on a
multiprocessor machine. I'm just speaking from experience with C++
threads though.
-Original Message-
From: Ho, Tony [mailto:[EMAIL PROTECTED]]
Sent:
pts:
for my $morekeys (keys $spot->{$key}) {}
for my $morekeys (keys %$spot->{$key}) {}
for my $morekeys (keys %($spot->{$key})) {}
for my $morekeys (keys (%$spot->{$key})) {}
and as you can see in the line with the ### I was just trying to put it
into a new hash, but that is giving me this
Thanks, that looks like what I was looking for. I also found an
HTML::Table module on CPAN.
-Original Message-
From: Dave K [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 22, 2002 11:18 AM
To: [EMAIL PROTECTED]
Subject: Re: HTML tables?
Barry,
Check out
http://stein.cshl.org/WWW
Does anybody know of a module to manage generating HTML tables? Is
there anything in CGI.pm? Does anyone have any tips to generating
semi-complex tables?
Barry Jones
DATABUILT, Inc. The Global AEC Information Company
1476 Fording Island Rd. Bluffton, SC 29910
(843) 836-2166 office
"Li
ey 2 => Value
Key 3 => Array
[0] => Value1
[1] => Value2
Key 4 => Value
Barry Jones
DATABUILT, Inc. The Global AEC Information Company
1476 Fording Island Rd. Bluffton, SC 29910
(843) 836-2166 office
"Life is like a dogsled tea
Thanks. I ended up using
reverse sort keys %hash;
-Original Message-
From: Hanson, Robert [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 21, 2002 2:37 PM
To: Barry Jones; [EMAIL PROTECTED]
Subject: RE: Reverse sort?
To expand on that, the "<=>" operator is for numeric
How can I sort a hash's keys in reverse order?
Barry Jones
DATABUILT, Inc. The Global AEC Information Company
1476 Fording Island Rd. Bluffton, SC 29910
(843) 836-2166 office
"Life is like a dogsled team;
if you ain't the lead dog, the scenery never changes."
- Le
Yes but you have to write it like this:
(@main) = (@data1,@data2,@data3);
-Original Message-
From: A Taylor [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 21, 2002 10:05 AM
To: [EMAIL PROTECTED]
Subject: simple array question
Hi all,
I have a very simple and probably stupid question to
I have an array that I wish to reuse. Before I reuse it, I want to clear out all
elements. Both of the following seem to work:
@an_array = "";
and
$#an_array = -1;
I then go on to do something like:
foreach (@foo_array) {
push (@an_array, $_);
}
Neither seems complete
How can I pre-populate the standard input.
For example, I want to issue a command line prompt for the user to key in a
directory name.
I would like the current directory to be displayed on the command line and
be editable.
Key in directory name: /home/currentdir
Thanks,
Barry
--
To
Hi,
'if ($a = $b)'
is not comparing $a to $b, it is assigning the value of $b into $a
If you want to test for numeric equivalence, use two '='s like
'if ($a == $b)'
Then your code should be fine,
Baz.
-Original Message-
From: Gross, Stephan [mailto:[EMAIL PROTECTED]]
Sent: Wednesda
LITTLE WHILE AGO BUT PLEASE GET
> ME OFF
>
I thought this was going to be a porno link!
--
barry in indy
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I'd recommend that you do something like this:
1-assign the text clear into a variable, this will save time later on...
eg:
$clearScreen = "clear";
Then:
system($clearScreen);
will clear the screen when ever you want to do so - this is just the way i
do it...
probably better ways to do it as
but I dont know...
Thanks for any help :)
Barry
===
# This subroutine calls the main user menu and refreshes the screen.
sub callMenu
{
system($clearScreen);
print
"=
hift;
This will take the first (and only) element in @_ and assign it to $vInput.
-Original Message-
From: Barry Carroll [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 07, 2001 11:03 AM
To: '[EMAIL PROTECTED]'
Subject: Newbie Question about subroutine
Hi all, i want to have a
sorry guys i got it, silly mistake
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi all, i want to have a subroutine for checking user input:
here is a snippet of the code:
print ("Is your Terminal ANSI compliant?\nYes or No, \(y\) or \(n\)?\n");
chomp ($input = );
verifyInput($input);
sub verifyInput
{
# Subroutine to verify input
# Will r
Hi, i have this small but of code in a script.
My script opens a file for editing, and assigns
a filehandle 'TEMPLATE' to it.
I need to check in another part of the script if
it open or closed.
Is this code good enough for doing that job?
if (!(-e TEMPLATE))
{
sorry, i figured this one out myself,
thanks anyway! :)
-Original Message-
From: Barry Carroll [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 26, 2001 3:24 PM
To: '[EMAIL PROTECTED]'
Subject: Compiling into C source code.
Hi All,
I have a perculiar problem:
i have a p
Hi All,
I have a perculiar problem:
i have a perl script test.pl which i want to
convert into C source.
perlcc will work fine, is there any way of getting it
to generate the C source and stop.
I ask this because when i try 'perl -M0=CC, -otest3.pl.c test3.pl'
it doesn't work, it says '-o' is
Hi all,
This is my first post :)
I once saw functions such as the ones above for perl.
I am writing a script and I want to be able to determine
the machine's Operating System type.
Does anyone know where i can get these functions or
similar ones to determine the OS type.
I know how to get the
I know this is not the proper venue for this, but:
looks like some layoffs are coming down the pike where I am; anybody
got any ideas for an intermediate PERL programmer in NY or northern NJ area?
I have many years of C programming in funds transfer on VAXes as well.
Thanks, Barry
I'm trying to install this package, and nmake says 'must use force'. What
does this mean?
Barry McClintock
Fundtech Corporation
Voice: 201-946-1100 ext 324
Fax : 201-946-1313
[EMAIL PROTECTED]
>I edit the http.conf file, you can see it:
>
>
>
>Thank“s a lot..
>
>Hasan
>
>--
>GMX - Die Kommunikationsplattform im Internet.
>http://www.gmx.net
>
--
LT Barry Elk
VFC-12 OPSO/SecMgr/ISSM
--
37 matches
Mail list logo