Z
zeebster
I am trying to parse an xml file for unprotected ampersands (&)
I do not want to match ampersand characters that preceed a protected
entity such as in the case of < or >
After hours of copious searches I found something that looked like it
would work using lookaheads:
&(?!quot|lt|gt|amp)
However this does not seem to work. Can anyone give me a clue what I am
doing wrong?
I do not want to match ampersand characters that preceed a protected
entity such as in the case of < or >
After hours of copious searches I found something that looked like it
would work using lookaheads:
&(?!quot|lt|gt|amp)
However this does not seem to work. Can anyone give me a clue what I am
doing wrong?