in reply to Re: regex for here doc?
in thread regex for here doc?

BIG thanks, this is so much simplier than my code!

I think the idea of $/ makes a huge difference. Even though I had working code, I am glad to replace it with something more manageable and something that adds to my experience.

Replies are listed 'Best First'.
Re: Re: Re: regex for here doc?
by ysth (Canon) on Oct 14, 2003 at 09:41 UTC
    You probably want to set $/ to "\n$2", not just $2. At least, that's how heredocs usually work.