Re: Hi all!

2010-03-30 Thread Shlomi Fish
On Tuesday 30 Mar 2010 20:02:54 Shawn H Corey wrote: > On Tue, 30 Mar 2010 18:20:02 +0200 > > chew23 wrote: > > > I hope you're going to like Perl 5 and will use it for years to > > > come. [P6] Just a note - it's either "Perl" or "perl" but never > > > "PERL": > > > > > > http://perl.org.il/mis

Re: Hi all!

2010-03-30 Thread Shawn H Corey
On Tue, 30 Mar 2010 18:20:02 +0200 chew23 wrote: > > > > I hope you're going to like Perl 5 and will use it for years to > > come. [P6] Just a note - it's either "Perl" or "perl" but never > > "PERL": > > > > http://perl.org.il/misc.html#pl_vs_pl > > I apologize to the list, but I was not aware o

Re: Hi all!

2010-03-30 Thread chew23
Welcome to the Perl world , Perl community and this list. You can find many resources and links to resources for Perl beginners on the Perl Beginners' Site: http://perl-begin.org/ Many thanks for this! I hope you're going to like Perl 5 and will use it for years to come. [P6] Just a note -

Re: Hi all!

2010-03-30 Thread Shlomi Fish
On Tuesday 30 Mar 2010 13:38:12 chew23 wrote: > Hi all guys, > I'm new to PERL, I'm now to the list. > > This is just for a presentation... > Hi chew23! Welcome to the Perl world , Perl community and this list. You can find many resources and links to resources for Perl beginners on the Perl

RE: Hi all

2008-10-30 Thread Bob McConnell
From: Anusha Krishna chand > I have to make my back button of the browser disable ... can any one > help me in doing that using perl script... > Thanks in advance > Anusha Krishnachand The quickest way to do that in most browsers is right click on the toolbar, select customize and remove

Re: Hi All

2005-11-16 Thread Paul Johnson
On Wed, Nov 16, 2005 at 08:28:39AM -0600, Gomez, Juan wrote: > But why no one has done something to make Perldoc more helpful for all? Who are you expecting to do that? Perl is developed by volunteers. And the number of active developers is vanishingly small compared to the number of people wh

Re: Hi All

2005-11-16 Thread Bob Showalter
Shawn Corey wrote: ...searching perldoc really, really sucks. The only search available is `perldoc -q keyword` and it only searches the FAQs and then, only their questions. That's right, only the questions; the answers are skipped! Here's a 3-line shell script I use to grep through the core

RE: Hi All

2005-11-16 Thread Gomez, Juan
: beginners@perl.org Subject: Re: Hi All On Wed, 16 Nov 2005, Shawn Corey wrote: > Date: Wed, 16 Nov 2005 08:34:16 -0500 > From: Shawn Corey <[EMAIL PROTECTED]> > To: beginners@perl.org > Subject: Re: Hi All > > Randal L. Schwartz wrote: > >>>>>>"Hri

Re: Hi All

2005-11-16 Thread Dennis G. Wicks
On Wed, 16 Nov 2005, Shawn Corey wrote: > Date: Wed, 16 Nov 2005 08:34:16 -0500 > From: Shawn Corey <[EMAIL PROTECTED]> > To: beginners@perl.org > Subject: Re: Hi All > > Randal L. Schwartz wrote: > >>>>>>"Hridyesh" == Hridyesh Pant <[

Re: Hi All

2005-11-16 Thread Shawn Corey
Randal L. Schwartz wrote: "Hridyesh" == Hridyesh Pant <[EMAIL PROTECTED]> writes: Hridyesh> Check this site http://perldoc.perl.org/ Why refer someone to a website that replicates everything that is on their own disk anyway? It boggles my mind every time I see this! Because searching perl

RE: Hi All

2005-11-16 Thread Pant, Hridyesh
PROTECTED] Sent: 16 November 2005 15:06 To: beginners@perl.org Subject: Re: Hi All >>>>> "Hridyesh" == Hridyesh Pant <[EMAIL PROTECTED]> writes: Hridyesh> Check this site http://perldoc.perl.org/ Why refer someone to a website that replicates everything that

Re: Hi All

2005-11-16 Thread Randal L. Schwartz
> "Hridyesh" == Hridyesh Pant <[EMAIL PROTECTED]> writes: Hridyesh> Check this site http://perldoc.perl.org/ Why refer someone to a website that replicates everything that is on their own disk anyway? It boggles my mind every time I see this! Learn to use the "perldoc" command. As for site

RE: Hi All

2005-11-16 Thread Pant, Hridyesh
Check this site http://perldoc.perl.org/ Regards Hridyesh -Original Message- From: Santosh Reddy [mailto:[EMAIL PROTECTED] Sent: 15 November 2005 12:10 To: beginners@perl.org Subject: Hi All Hi All, This is my first mail to this mailing list. I am just starting to learn Perl. Plea

Re: Hi All

2005-11-14 Thread Chris Devers
On Tue, 15 Nov 2005, Santosh Reddy wrote: > This is my first mail to this mailing list. I am just starting to > learn Perl. > > Please help me in getting the basics cleared. Here's some basics: http://learn.perl.org/ Here's another: This list responds best to direct questions about specific p

Re: Hi all, question about caracter detection

2002-11-22 Thread Tanton Gibbs
MAIL PROTECTED]> Sent: Friday, November 22, 2002 3:34 PM Subject: RE: Hi all, question about caracter detection > Hi All, > > thankx for the help (Sudarshan Raghavan and Beau E. > Cox), i have found a generic solution > > here is the sample script... >

RE: Hi all, question about caracter detection

2002-11-22 Thread Miguel Angelo
Hi All, thankx for the help (Sudarshan Raghavan and Beau E. Cox), i have found a generic solution here is the sample script... # #!/usr/bin/perl -wT ## # modules ## use strict ; ##

RE: Hi all, question about caracter detection

2002-11-18 Thread Sudarshan Raghavan
On Mon, 18 Nov 2002, Beau E. Cox wrote: > Hi - > > This will 'strip' all but a-zA-Z0-9: > > #!/usr/bin/perl > > use strict; > use warnings; > > my $STRING = "kjsh234Sd\nki"; > > $STRING =~ s/[^a-zA-Z0-9]//sg; > > print "$STRING\n"; > > the ~ makes the character class negat

RE: Hi all, question about caracter detection

2002-11-18 Thread Beau E. Cox
Hi - This will 'strip' all but a-zA-Z0-9: #!/usr/bin/perl use strict; use warnings; my $STRING = "kjsh234Sd\nki"; $STRING =~ s/[^a-zA-Z0-9]//sg; print "$STRING\n"; the ~ makes the character class negative, the s makes the regex examine new lines, and g means global.