Regular Expressions and XML document

  • Thread starter Thread starter Jo M
  • Start date Start date
J

Jo M

Hello,

Does anyone of you know any tool that would convert regular expressions
to XML compatible form?

I mean tool that would convert e.g. & to & etc.

I have written an ASP.NET C# application that uses regular expressions
stored in XML file but a tool that would convert Regexp to XML compatible
form
would be nice,

Cheers!
 
Hello,
Does anyone of you know any tool that would convert regular
expressions to XML compatible form?

I mean tool that would convert e.g. & to & etc.

I have written an ASP.NET C# application that uses regular expressions
stored in XML file but a tool that would convert Regexp to XML
compatible
form
would be nice,
Cheers!

When you use an XmlTextWriter to write that XML file, those conversions are
done for you automatically.
Maybe you can build a small helper application around that.

Hans Kesting
 
Back
Top