in reply to Re: Tag balanced with escape characters
in thread Tag balanced with escape characters

I am trying to change the closing tag with some thing else, so that open and closing tag pattern will not match again with the while loop.
I tried using "\Q\E" but still i didn't get the required output.
regards --B
  • Comment on Re^2: Tag balanced with escape characters

Replies are listed 'Best First'.
Re^3: Tag balanced with escape characters
by tphyahoo (Vicar) on Jul 27, 2005 at 10:58 UTC
    I still don't really get it.

    Can you repost your question without the funny special character, or is the special character a part of your problem?

    If you need that special character, then it might be helpful to do a regex using hex codes. EG, " " =~ /\x020/, where 20 is the hex code for space, if I recall correctly. Figure out the hex code for that funny character, and use the hex code instead in your regex.

    This will help if the problem you are having is due to the fact that the text editor you use to view/type interprets data differently from perl.