, etc) -- but a lot
of the time it ends up being easier to just figure out the mappings in
advance and hard-code that either in your script or in a resource data
file that your script loads at run time.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands
hat did
flow charts, though a lot of them have plugins for different types of
reports that may include such diagrams -- but at least it does the bulk
of the setup work for you.
Good luck.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
if $n > 100, etc. It wouldn't be that
hard to do, but I think sprintf will be much easier.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On Fri, 10 Mar 2006, Nan Jiang wrote:
> I would like to ask if some of you know how to use perl to detect the
> status (checked or unchecked) of a radio button from a HTML form?
Yes. Some of us do know how to do this.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTE
sort the hash keys. Instead of this:
> foreach ( keys( %values ) ) {
Try this, or a variant on this:
foreach ( sort keys( %values ) ) {
You can get more sophisticated than this, but doing at least this much
sorting on the keys should start producing consistent results.
--
Chris De
ll know where to focus your attention.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
e have in trying to convince them otherwise? You have a slim
chance of catching a typo -- though if you think about it most people
that can type at all well have probably long-since committed their own
name to finger memory, so typoes are unlikely -- but most likely you're
just going to get
lso.
Good luck with that!
Let us know if you turn up any good leads.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
n the shebang
line, as
#!/usr/bin/perl -w
For that matter, most CGI scripts should also use -T for data tainting,
so that would make it
#!/usr/bin/perl -wT
...but that's getting a little bit ahead of things, perhaps. :-)
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To un
g Perl? Yes?
I suspect it will be easier to help you if you give us a clear idea of
what your data is, how it's being stored (Excel, or other), what you
need to accomplish with your data, and -- most important -- what you
have tried so far.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
On Mon, 23 Jan 2006, hien wrote:
> i am trying to check if there are any files named file* (e.g.
> file_001.txt file1.doc) in my directory.
perldoc -f glob
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:
ind? Did you find Lincoln
Stein's _Network Programming with Perl_ yet?
There's lots of good material out there, if only you try to find it.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
rted by the times subroutine depends on the rate
at which the clock interrupts occur.
Helpful?
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
to
whip up a solution in no more than an hour or two.
Have at it and let us know if you have any questions once you've started
writing your version of that script.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
for interacting with
Windows itself, but I imagine it should work fine.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
body {background: white; color: black; font: 12pt Times, serif;}
#noprnt {display: none !important;}
}
];
Less fiddly, easier to read, works as well or better.
Heredocs are for grizzled old shell-scripters that refuse to let go of
their scars :-)
then write a program using it.
Have you tried either of these yet?
If you've read the documentation, cite it and explain to us how it
didn't make sense to you. If you've written a program, show it to us and
explain how it isn't doing what you want it to do.
--
Chris De
e one you're looking at is pure Perl.)
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
indows will
probably lead to useful sugggestions -- but then this is the point
where, as I noted above, I personally usually find it easier to just
cheat and develop a web application instead.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For a
On Mon, 9 Jan 2006, Saurabh_Agarwal wrote:
> I want to know how to use perl -d
perldoc perldebug
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://le
On Mon, 9 Jan 2006, Saurabh_Agarwal wrote:
> How can we test our Perl script?
We can test our Perl script carefully.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/&
ist is for
helping people improve their code writing skills, not doing the writing
for you. If you want it written for you, I'm sure someone could be
talked into helping you out for a reasonable fee :-)
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTE
ks!
Several Perl books, including _Mastering Regular Expressions_ and, if I
remember correctly, _Learning Perl_, use variants of this example. In
essence, yes, if you want to match one of several constant strings like
this, the match will happen faster with a series of static regexes than
ch like the $str[] array. Also,
it's usefully indented, because Readability Matters.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
ble to give you the
coordinates you need to add to your GD::Graph graph, but sorting out how
to do this will depend on how your overall code has been written.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
n statement B while having the same result" --
and you may find more concrete advice from the list members.
--
Chris Devers
DO NOT LEAVE IT IS NOT REAL
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On Wed, 28 Dec 2005, Umesh T G wrote:
> I want an alternative solution, if any.
Here's one:
$ perl -le '$i = "abcd"; @j = split //, $i; print join "\n", @j;'
a
b
c
d
$
--
Chris Devers
0ª¸IQ'éL
--
To unsubscribe, e-mail: [EMAIL PROTECT
o do more
than is feasible with data files you're getting from somewhere else, or
you're trying to provide data to somewhere else in a format that can't
do all the things you need it to do. Either way, considering a different
way to represent your data would probably make your task much simpler.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
an honor them?
That in particular is really a business decision more than a technical
one, and figuring out how you want to address that decision should
answer a lot of the details about how you'll end up implementing it.
--
Chris Devers
FORg ÉQ-
--
To unsubscribe, e-mail: [EMAIL PROTEC
k ??? thank you very very
> much. Regards.
Ah, you've found the wrong list. You're looking for
[EMAIL PROTECTED]
Note that it may not exist yet.
Setting it up is left as an exercise for the reader. :-)
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additio
foreach my $word ( @list ) {
$word_length{ length $word }++;
}
foreach my $count ( sort keys %word_length ) {
print "Length: $count \t Words: $word_length{$count}\n";
}
That or something like it should do what you're asking for.
--
Chris Devers
¦Ñÿ²,
's so complicated here. Are you overthinking this, or am
I underthinking it?
--
Chris Devers
2V½°ªO5Ñýå
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
l
servers messages flow through are on blacklists.
Your time and your life is too valuable to spend it thinking this much
about spam. Take your life back. Just use SpamAssassin and get on with
more interesting things :-)
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
ct with a text-mode program, curses may help you.
http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q3.8.html
( ^ possibly outdated advice )
http://search.cpan.org/dist/Curses/
http://search.cpan.org/dist/Curses/gen/make.Curses.pm
--
Chris Devers
ÑGÍô
--
To unsubscribe, e-mail: [EMAIL PROTE
6004788?v=glance
http://books.perl.org/book/200
http://www.manning.com/Conway/
http://www.amazon.com/exec/obidos/tg/detail/-/188491?v=glance
http://books.perl.org/book/171
--
Chris Devers
Ù³ÄCIü[Ð-Q
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
bout it too much. Test to be sure, but you
are very likely to find that things just continue to work.
--
Chris Devers
pÝU·¡qÃRá²
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
k 5.8.6, last I checked.
In general, when upgrading the system copy of Perl, you usually don't
have to make any changes to your scripts. It isn't a bad idea to bring
them up to date with modern programming constructs, but if the older
stuff isn't broken, you don't have to
hroepl.net/projekte/mod_gzip/browser.htm
Under Apache2, mod_deflate seems to be similar:
http://httpd.apache.org/docs/2.0/mod/mod_deflate.html
--
Chris Devers
ªíÄMh6ߨ)#
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.per
-f tr
Did you try the uc() uppercase command ?
perldoc -f uc
uc() is probably the one you want, but the others offer more flexibility
and can be preferable in certain contexts.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
up and assign the
value each time, while the other version is assigning a constant and so
has been optimized at compile time.
But that's mainly a guess...
--
Chris Devers
tìçÎÆgº
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
n't be.
But I could be wrong.
How much faster is it?
--
Chris Devers
~Ò#Gn¹$¬äð
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On Sat, 10 Dec 2005, Beau E. Cox wrote:
> Hi beginners -
>
>
>
> Aloha => Beau;
> [EMAIL PROTECTED]
> 2005-12-10
You don't say! :-)
--
Chris Devers
·¾fm)cÓTO¥Ü
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROT
not sure what functionality they have that people
want and can't get out of something simpler like Vim or Emacs...
--
Chris Devers
HåJSOtØu¨9
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
> 22.33.44.22
> 22.33.44.22
> 22.33.44.33
> 22.33.44.33
> 22.33.44.44
> 22.33.44.55
>
> Now I only want the uniq times of all IP appeared,this is 5.
So, some kind of structure like
foreach @ip {
$seen_ip{ $_ }++;
}
And then work on the keys in the %seen_ip hash.
On Sat, 3 Dec 2005, Randal L. Schwartz wrote:
> >>>>> "Chris" == Chris Devers <[EMAIL PROTECTED]> writes:
>
> Chris> My understanding is that the Python idiom is to avoid putting the full
> Chris> path, in favor of something like
>
> Chris
uild up a list with File::Find or similar
module, then work through the list looking for newline chatacters for
each file in that list. It should get the same result as above, but will
take more hand-coding to get to the final result, and it shouldn't hit
the limitation of too many files that th
ers/
Which has the archive you're looking for.
Ain't Google a marvelous thing? :-)
--
Chris Devers
2þç/VQÈÑýBU~
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
ile.PL arguments available in the copy
of the Perl source you download for more specific instructions.
But anyway, yeah. In general, you can't depend on things working
consistently if you just start randomly moving around compiled programs
and libraries. Sometimes it won't matter, bu
#x27;t how most Perl hackers write their code. I don't see
much harm in it though, and I could picture it making some scripts more
portable if they're going to be running on systems where you can't
depend on a copy of the Perl binary being in one of the usual places.
--
Chri
On Thu, 1 Dec 2005, Rob Coops wrote:
> Then again Chris here is asking for a way to read XLS files not a way
> to write them...
Doh! Of course, I meant Spreadsheet::ParseExcel :-)
--
Chris Devers
xô©l71Æþ;
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands,
This STILL isn't the "please do my homework for me" list :-)
--
Chris Devers
eD¯!î×/.Z$
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
ed -- I was expecting that you want output
like "ABCA", "ABCB..", "ABCD.", "ABCD", "ABCD". Which is it?
Regardless, either way is possible.
What have you tried so far?
Anything?
We can only help critique code you've attempted yourself.
This
On Mon, 28 Nov 2005, Andreas Schroeder wrote:
> Hello? Does someone know, why I can't install the Glib-module on my perl?
Nope!
--
Chris Devers
²S%OÊ¢*îÖ
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.
dynamically. There
should be multiple modules to help do this sort of thing. Have you
taken a look for 'captcha' on CPAN?
--
Chris Devers
~ENÓâ±þÜj²K
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
han SA, and a very strong chance that it
will be much less round. SpamAssassin is pretty easy to extend, and it's
mostly written in Perl, so if you want to have something productive to
practice on, you can start adding or modifying SA rules in Perl.
--
Chris Devers
¤y'a½y;'
Okay.
http://search.cpan.org/
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
any code, or any benchmarks, so we don't.
Efficient regexes run efficiently.
Inefficient regexes run inefficiently.
Measuring can help identify potential problems.
But in this case, we don't even know if that's where the problem lies.
--
Chris Devers
è*B)¢O¯ùPÈ
--
To uns
t where the time is being spent, or what system
resource is being exhausted, you can't properly address the problem.
Really, you could do a whole lot worse than by just getting a copy of
_Perl Best Practices_ and using its advice to rewrite your program from
scratch. Almost everyone coul
your junk mail -- you'll be glad you did :-)
--
Chris Devers
R±Ð6×ÄÜì
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On Tue, 22 Nov 2005, Bob Showalter wrote:
> [EMAIL PROTECTED] wrote:
> > ...
> > please give me the answers of these questions.
>
> Chris Devers will be along shortly... :~)
Sorry, I was on vacation :-)
Please, in the future, direct all such questions to
[EMAI
d with spam content, you can cut it off &/or delete it.
--
Chris Devers
) [$ÜE"OÂM
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On Thu, 17 Nov 2005, Michael Gargiullo wrote:
> I've been driving myself crazy with this for a few hours, any help
> would be great.
1. Read the documents.
2. Write some code.
3. Show us the code you tried.
Please demonstrate 1, 2, and 3, and we will be happy to assist you :-)
vilable to do exactly what you want to do,
why reinvent it? Some assumption that your version of this particular
wheel will be extra super duper round? Good luck with that... :-)
--
Chris Devers
\?Çfê ¦¸#
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [
site like learn.perl.org. Start with some independent
reading and practicing. And then come back to us once you're ready for
the next step.
--
Chris Devers
©957ðVÓ
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
e to do this when it's a problem that
has been solved a hundred thousand times now -- just let CGI.pm do it.
--
Chris Devers
0%T [EMAIL PROTECTED]
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
d so far?
Give us a hint that you've at least *tried* to answer such a Frequently
Asked Question for yourself, and we'll be happy to help you out.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
top of
http://search.cpan.org/dist/DBD-ODBC/ODBC.pm
This uses Perl's DBI module's DBD::ODBC driver to establish an ODBC
connection to the database server of your choice.
--
Chris Devers
3åÄY÷S³c¡
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mai
ller, faster, and much
easier to maintain.
But yes, if you really want to do this, it's possible. As the three
second Google search I'm sure you did would have already told you :-)
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-ma
here all
the drivers are. It's a side effect, not the original purpose.
Similarly, quota management is a *side effect* of the way permissions
are set up -- they're something you get nearly for free once this
framework is in place -- but they are not the primary purpose, nor is
kee
houldn't.
The tool you're looking for, on Unix or Windows, is File::Find:
$ perldoc File::Find
It should, I believe, be a core module with recent Perl versions.
--
Chris Devers
õùo¯áVѸ
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail
snap071004.tar.gz
-- along with some documentation --
http://pdl.sourceforge.net/PDLdocs/
Ah. This seems to be the home page now, look here:
http://pdl.sourceforge.net/WWW/
--
Chris Devers
ÊÉ4ONÌ=ÎBkÒ
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
On Wed, 26 Oct 2005, Timothy Johnson wrote:
> I think you can use \r instead of \n for Access and Excel.
Are you sure about that?
I thought Windows used \r\n as a pair (or \n\r?) for the line delimiter.
But then, I don't do Windows anymore, so I could be wrong :-)
--
Chris Deve
:Client, both of which
look possibly useful, though neither seems to directly mention "g3" :-/
:-/
--
Chris Devers
Ö¬qåUî×uÓ
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
slate it to Perl is better.
Showing, specifically, what you've tried so far is best.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On Tue, 25 Oct 2005, Pant, Hridyesh wrote:
How to extract zip file using perl program...
Write the program, then run it.
Have you tried writing it yet?
Have you tried searching CPAN for helpful modules?
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands
On Mon, 24 Oct 2005, Dhanashri Bhate wrote:
Could anyone please suggest what module is available on CPAN for this?
Take a look at WWW::Mechanize.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/>
, send specific questions -- "please help me write this script" is
not a question we can help with, but "I can't get FOO to work" or "why
doesn't BAR work the way I expect it to" are things we can help.
--
Chris Devers
--
To unsubscribe, e-mail: [EMA
edition for you. If you can make a case
that having the books will make you better at your job, then sometimes
they'll let you expense the price of books. It's worth a try...
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECT
/www.amazon.com/exec/obidos/tg/detail/-/1565926099
As for more concrete advice, that depends on the specific task.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
well get started that way.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
H.pm>, it looks like
you might be able to use the ssh_cmd() method to set this up. Look up
the section that mentions OPTIONS_HASHREF for hints, and good luck!
--
Chris Devers
÷0~g±ê
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
t and
comfortable than reading it in a DOS / *nix terminal window.
--
Chris Devers
D3Y¸«ñm"á
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
s is
Config::IniHash, Config::Tiny, etc. There seem to be dozens...
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
the regex. This might work:
/\n\s*\n+/
But that doesn't properly check for spaces after the first newline. If
that matters, you'll have to tweak it a bit further.
Make sense?
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
(this appears complete,
but I want to be sure), and what the error message was.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
nd, $first );
}
You should be able to apply that to each line of input to generate each
line of output. There's lots of other ways to go about this as well
though, and if you provide some code we can help you work through it.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
ample: this is a xml file and its content below
Ulfet
24
I need to take Ulfet and 24.
Great. That can be done.
Show us what you've tried and we can try to help.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTEC
ng the whole thing in Perl, using a module
such as Mail::Simple. (There's at least a dozen others that could also
work, but anything with "::Simple" in the name is usually promising to
start with.) Read over the documentation for that module and you should
be able to find examples
stion twice. This question doesn't appear to have anything
to do with CGI programming, so I'm deleting that CC.
Again, if you have problems, show us the code you've tried, and we can
try to help you.
--
Chris Devers
ù
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For addi
than repeating a FAQ to a mailing
list that has already been asked and answered a million times.
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
then I can only assume that you haven't
actually done any searching for answers yet.
Once you've tried that, and have some code that you need help with, then
you can expect constructive responses from members of the list.
So, again. What have you tried so far?
--
Chris Devers
p the html?
"Try writing a program. That's a popular approach."
"What have you tried doing so far? Show us some code."
"Have you looked at LWP?"
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL P
out how to throttle how much data users can upload. You'll be
glad you did. Better still, figure out how other people are solving this
problem, as your wheel is unlikely to be any rounder than theirs are.
You'll be even gladder that you didn't have to write it from scratch.
--
Chris
tely and have
it do the download and install for you.
> Is there a way to download the module and load it into the
> unix ?
Yes. See above.
--
Chris Devers
!¨1×oº³ÐÑ
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
_. I'm not sure if it would be seen as a bit outdated now, but
it seems like it had an excellent reputation a couple of years ago.
A good place to keep looking is http://books.perl.org/. It has summaries
and reviews of lots of Perl books, including the ones noted here.
--
Chris Devers
ðóúF
x27;s no substitute for a two line
shell script. :-)
--
Chris Devers
CHï/ÉJgçÉ|þ
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On Sun, 2 Oct 2005, Anish Kumar K. wrote:
> Anyone could tell some site where I could get the script in JAVA
> SCRIPT for traversing the XML with unlimited DEPTH(TREE). I do not
> want to use the XML:: Modules available in PERL.
Then you're asking utterly the wrong list.
--
d reply is relevant here;
What have you tried so far?
What code have you written?
Show us what you've done and we can help you more.
--
Chris Devers
ýNîà¢øP)
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
a (full) hash to a scalar will never work :-)
--
Chris Devers
6f9A/
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
; That would be very helpful for people with actualy helpful awnsers
More broadly, read this, or at least skim it:
http://www.catb.org/~esr/faqs/smart-questions.html
The best way to get smart answers is to ask smart questions.
The best way to get help is to make it easy for others to giv
1 - 100 of 681 matches
Mail list logo