473,387 Members | 1,745 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Regular Expressions to XML

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!

Mar 7 '07 #1
5 4050
It's not a tool, per se, but the framework has built-in escaping:
System.Text.StringBuilder sb = new System.Text.StringBuilder();

new System.Xml.XmlTextWriter(new
System.IO.StringWriter(sb)).WriteString("&");


Mar 7 '07 #2
Jo M wrote:
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,
You can use XmlWriter and its WriteString method to escape a string e.g.

XmlWriterSettings writerSettings = new XmlWriterSettings();
writerSettings.ConformanceLevel = ConformanceLevel.Fragment;
using (XmlWriter xmlWriter = XmlWriter.Create(Console.Out,
writerSettings)) {
xmlWriter.WriteString("Kibo & Xibo");
}

outputs "Kibo & Xibo".
--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Mar 7 '07 #3
Thanks for sharing your info.

Cheers!

"Jo M" <jo****@hotmail.comwrote in message
news:es**********@nyytiset.pp.htv.fi...
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 &amp; 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!

Mar 7 '07 #4
Hello again!

I wrote a small Windows App that converts
characters to XML.

Code below:
StringBuilder sb = new StringBuilder();

new System.Xml.XmlTextWriter(new

StringWriter(sb)).WriteString(this.txtBoxFrom.Text );

this.txtBoxTo.Text = sb.ToString();

If I give & to txtBoxFrom field it writes &amp; to txtBoxTo field

but when givin " it writes " not &quot; that it should write.

Can anyone point what is still missing?

Cheers!

"Jo M" <jo****@hotmail.comwrote in message
news:es**********@nyytiset.pp.htv.fi...
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 &amp; 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!

Mar 7 '07 #5
Hmm, that's a weird one. I had to go in and read some docs on it a bit, but
the problem is that the quote is only escaped when in the context of an
attribute:
WriteString does the following

a.. The characters &, <, and are replaced with &amp;, &lt;, and &gt;,
respectively.

b.. Character values in the range 0x-0x1F (excluding white space
characters 0x9, 0xA, and 0xD) are replaced with numeric character entities
(� through &#0x1F).

c.. If WriteString is called in the context of an attribute value, double
and single quotes are replaced with &quot; and &apos; respectively.

You'd need to do a WriteAttribute to get the write in context of an
attribute to tell the writer that it is writing between two existing
quotation marks and hence needs escaping.

Mar 7 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Michael McGarry | last post by:
Hi, I am horrible with Regular Expressions, can anyone recommend a book on it? Also I am trying to parse the following string to extract the number after load average. ".... load average:...
1
by: Kenneth McDonald | last post by:
I'm working on the 0.8 release of my 'rex' module, and would appreciate feedback, suggestions, and criticism as I work towards finalizing the API and feature sets. rex is a module intended to make...
2
by: Sehboo | last post by:
Hi, I have several regular expressions that I need to run against documents. Is it possible to combine several expressions in one expression in Regex object. So that it is faster, or will I...
4
by: Együd Csaba | last post by:
Hi All, I'd like to "compress" the following two filter expressions into one - assuming that it makes sense regarding query execution performance. .... where (adate LIKE "2004.01.10 __:30" or...
7
by: Billa | last post by:
Hi, I am replaceing a big string using different regular expressions (see some example at the end of the message). The problem is whenever I apply a "replace" it makes a new copy of string and I...
3
by: a | last post by:
I'm a newbie needing to use some Regular Expressions in PHP. Can I safely use the results of my tests using 'The Regex Coach' (http://www.weitz.de/regex-coach/index.html) Are the Regular...
25
by: Mike | last post by:
I have a regular expression (^(.+)(?=\s*).*\1 ) that results in matches. I would like to get what the actual regular expression is. In other words, when I apply ^(.+)(?=\s*).*\1 to " HEART...
1
by: Allan Ebdrup | last post by:
I have a dynamic list of regular expressions, the expressions don't change very often but they can change. And I have a single string that I want to match the regular expressions against and find...
13
by: Wiseman | last post by:
I'm kind of disappointed with the re regular expressions module. In particular, the lack of support for recursion ( (?R) or (?n) ) is a major drawback to me. There are so many great things that can...
12
by: FAQEditor | last post by:
Anybody have any URL's to tutorials and/or references for Regular Expressions? The four I have so far are: http://docs.sun.com/source/816-6408-10/regexp.htm...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.