in reply to Re: Matching against a partially known string (link)
in thread Matching against a partially known string

Yes, the /z modifier would precisely fit what I'm looking for.

Let me clarify my problem by contrasting it with your sample code:

Dare I open up the perl source code and try to implement this now?

  • Comment on Re: Re: Matching against a partially known string (link)

Replies are listed 'Best First'.
Re: Re: Re: Matching against a partially known string (link)
by wonkozen (Initiate) on Oct 10, 2003 at 01:22 UTC

    I poked around in regexec.c. Whoa, heavy magic! Maybe --just maybe-- if the perl RE engine weren't so optimized, I would have the confidence to change stuff and implement /z. But not on the existing RE engine.

    I'm now considering using Sandfly's suggested technique with YAPE::Regexp to provide the list of atoms.

    Thanks to all for the useful comments and suggetions.