On Mon, Feb 17, 2014 at 9:10 PM, Charles DeRykus wrote:
>
> On Mon, Feb 17, 2014 at 4:25 PM, Phil Smith wrote:
>
>> On Mon, Feb 17, 2014 at 6:16 PM, Charles DeRykus wrote:
>>
>>>
>>> On Mon, Feb 17, 2014 at 12:41 PM, Phil Smith wrote:
>>>
I'm currently loading some new servers with CentOS6
On Mon, Feb 17, 2014 at 4:25 PM, Phil Smith wrote:
> On Mon, Feb 17, 2014 at 6:16 PM, Charles DeRykus wrote:
>
>>
>> On Mon, Feb 17, 2014 at 12:41 PM, Phil Smith wrote:
>>
>>> I'm currently loading some new servers with CentOS6 on which perl5.10 is
>>> the standard version of perl provided. Howe
On Mon, Feb 17, 2014 at 6:16 PM, Charles DeRykus wrote:
>
> On Mon, Feb 17, 2014 at 12:41 PM, Phil Smith wrote:
>
>> I'm currently loading some new servers with CentOS6 on which perl5.10 is
>> the standard version of perl provided. However, I've also loaded perl5.18
>> and I don't think the vers
On Mon, Feb 17, 2014 at 12:41 PM, Phil Smith wrote:
> I'm currently loading some new servers with CentOS6 on which perl5.10 is
> the standard version of perl provided. However, I've also loaded perl5.18
> and I don't think the version of perl is significant in the results I'm
> seeing. Basically,
I'm currently loading some new servers with CentOS6 on which perl5.10 is
the standard version of perl provided. However, I've also loaded perl5.18
and I don't think the version of perl is significant in the results I'm
seeing. Basically, I'm seeing perl performance significantly slower on my
new sy
Meir Yanovich wrote:
>
perl regexp error , I cant understand what is wrong
>
Hello all I have simple perl regexp that is searching for pattern in string
and replace it with the same string + addition string here is what I have :> >
> Code:
>
> my $rec = q| new Array(&
On 11/02/2006 07:11 AM, Meir Yanovich wrote:
perl regexp error , I cant understand what is wrong
Hello all
I have simple perl regexp that is searching for pattern in string and
replace it with the same string + addition string
here is what I have :
Code:
my $rec = q| new Array
"Meir Yanovich" schreef:
> [^+\s*]
That is a character class, not containing "+", whitespace and "*".
A character class is matching a single character.
Is that what you meant by it?
It will match the comma that you have in front of the opening dquotes,
so that gets removed.
--
Affijn, Ruud
"G
perl regexp error , I cant understand what is wrong
Hello all
I have simple perl regexp that is searching for pattern in string and
replace it with the same string + addition string
here is what I have :
Code:
my $rec = q| new Array("Attributes Management"
,"/Res
Meir Yanovich am Dienstag, 29. August 2006 11:41:
> e
>
> hello all
Hello Meir Yanovich
> i have string that i need to parse something list that :
> method="post"<$if(blah)%> name="<% env.get("StatusList") %>" ><% hello
> %>" value="">
>
> now im selecting the the string part with lazy regexp s
e
hello all
i have string that i need to parse something list that :
name="<% env.get("StatusList") %>" ><% hello
%>" value="">
now im selecting the the string part with lazy regexp selection :
some thing like that :
(<%.*?%>)
but now im stack if say i like to loop throw all the matchin
Jay Savage wrote:
> On 8/11/05, Alex <[EMAIL PROTECTED]> wrote:
>>>Also, correction posted by Jay, is not applicabile because we have more
>>>lines containing "Virus" word and only one should be counted (* Virus).
>>>
>>And for posterity, i am answering myself:
>>
>>elsif($prog eq 'hook
On 8/11/05, Alex <[EMAIL PROTECTED]> wrote:
> > Also, correction posted by Jay, is not applicabile because we have more
> > lines containing "Virus" word and only one should be counted (* Virus).
> >
> > Alex
>
> And for posterity, i am answering myself:
>
> elsif($prog eq 'hook') {
>
> Also, correction posted by Jay, is not applicabile because we have more
> lines containing "Virus" word and only one should be counted (* Virus).
>
> Alex
And for posterity, i am answering myself:
elsif($prog eq 'hook') {
# Vexira antivirus
if($text =
On Wednesday 10 August 2005 04:36, you wrote:
> On 8/9/05, Wagner, David --- Senior Programmer Analyst --- WGO
>
> <[EMAIL PROTECTED]> wrote:
> > Alex wrote:
> > > Hello everyone,
> > >
> > > I need some help to fix a problem in mailgraph.pl script. I'm not a
> > > perl programmer, so i hope to fin
On 8/9/05, Wagner, David --- Senior Programmer Analyst --- WGO
<[EMAIL PROTECTED]> wrote:
> Alex wrote:
> > Hello everyone,
> >
> > I need some help to fix a problem in mailgraph.pl script. I'm not a
> > perl programmer, so i hope to find a little help here...
> >
> > I need to translate an old cod
Alex wrote:
> Hello everyone,
>
> I need some help to fix a problem in mailgraph.pl script. I'm not a
> perl programmer, so i hope to find a little help here...
>
> I need to translate an old code which is parsing my maillog file, into
> new one, related to my present needs.
>
> The old code has
Hello everyone,
I need some help to fix a problem in mailgraph.pl script. I'm not a perl
programmer, so i hope to find a little help here...
I need to translate an old code which is parsing my maillog file, into
new one, related to my present needs.
The old code has worked with old vexira l
Rajan wrote:
Hi Experts,
I am new to perl. The following code works fine.
#!/opt/perl/bin/perl
use strict;
use warnings;
my $str="http://162.16.23.0";;
if( $str =~ /(\d+)\.(\d+)\.(\d+)\.(\d+)/ )
{
print "$1.$2.$3.$4";
}
But, How to simplify the following line & print the
Rajan <[EMAIL PROTECTED]> wrote:
:
: I am new to perl. The following code works fine.
:
: #!/opt/perl/bin/perl
: use strict;
: use warnings;
:
: my $str="http://162.16.23.0";;
: if( $str =~ /(\d+)\.(\d+)\.(\d+)\.(\d+)/ )
: {
: print "$1.$2.$3.$4";
: }
:
: But, How to simplify the foll
Hi Experts,
I am new to perl. The following code works fine.
#!/opt/perl/bin/perl
use strict;
use warnings;
my $str="http://162.16.23.0";;
if( $str =~ /(\d+)\.(\d+)\.(\d+)\.(\d+)/ )
{
print "$1.$2.$3.$4";
}
But, How to simplify the following line & print the IP in the
And don't forget the standard 'perldoc perlre'.
-Original Message-
From: John W. Krahn [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 08, 2002 11:20 AM
To: [EMAIL PROTECTED]
Subject: Re: Perl regexp tutorial?
Fogle Cpl Shawn B wrote:
>
> Can anyone point me
Fogle Cpl Shawn B wrote:
>
> Can anyone point me to a regexp tutorial (or manpage for that matter). I
> can't seem to find good information that's too indepth on the subject (and
> some of you guys look like regexp wizards).
http://www.oreilly.com/catalog/regex2/
John
--
use Perl;
program
ful
I have learnt a lot from these pages:
http://japhy.perlmonk.org/book/
//Dave
-Original Message-
From: Fogle Cpl Shawn B [mailto:[EMAIL PROTECTED]]
Sent: den 8 oktober 2002 09:27
To: '[EMAIL PROTECTED]'
Subject: Perl regexp tutorial?
Can anyone point me to a regexp tu
Can anyone point me to a regexp tutorial (or manpage for that matter). I
can't seem to find good information that's too indepth on the subject (and
some of you guys look like regexp wizards).
thanks,
shawn
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROT
25 matches
Mail list logo