etters.
Cheers,
Chris
--
Follow the path of the Iguana...
http://rebertia.com
>
> -Original Message-
> From: John Machin [
> ]
> Sent: Tuesday, January 13, 2009 11:15
> To: [email protected]
> Subject: Re: Relative performance of comparable regular expressio
[email protected]
Subject: Re: Relative performance of comparable regular expressions
On Jan 13, 7:24 pm, "Barak, Ron" wrote:
> Hi,
>
> I have a question about relative performance of comparable regular
> expressions.
>
> I have large log files that start with thr
John Machin wrote:
> On Jan 13, 7:24 pm, "Barak, Ron" wrote:
>> Hi,
>>
>> I have a question about relative performance of comparable regular
>> expressions.
>>
>> I have large log files that start with three letters month names
>> (
On Jan 13, 7:24 pm, "Barak, Ron" wrote:
> Hi,
>
> I have a question about relative performance of comparable regular
> expressions.
>
> I have large log files that start with three letters month names
> (non-unicode).
>
> Which would give better performan
Hi,
I have a question about relative performance of comparable regular expressions.
I have large log files that start with three letters month names (non-unicode).
Which would give better performance, matching with "^[a-zA-Z]{3}", or with
"^\S{3}" ?
Also, which is better