Re: Error : Nested quantifiers before HERE mark in regex
- From: krahnj@xxxxxxxxx (John W. Krahn)
- Date: Tue, 29 Nov 2005 01:54:44 -0800
Bedanta Bordoloi, Gurgaon wrote:
> Hi All,
Hello,
> I'm using the following regex in my code with processes a log file
>
> $str =~ s/(^$log_entry[0]\s)//i
>
> But I'm getting the following error on running the script:
>
> Nested quantifiers before HERE mark in regex m/(^img13.** << HERE **\s)/
>
> Can the regex be written in some other way? Please help.
$str =~ s/(^\Q$log_entry[0]\E\s)//i
John
--
use Perl;
program
fulfillment
.
- References:
- Error : Nested quantifiers before HERE mark in regex
- From: Bedanta Bordoloi
- Error : Nested quantifiers before HERE mark in regex
- Prev by Date: RE: help about regex matching
- Next by Date: RE: Error : Nested quantifiers before HERE mark in regex
- Previous by thread: Re: Error : Nested quantifiers before HERE mark in regex
- Next by thread: RE: Error : Nested quantifiers before HERE mark in regex
- Index(es):
Relevant Pages
|
|