vote up 1 vote down star
1

Hello everyone,

Any C# function which could be used to escape and un-escape a string, which could be used to fill in the content of an XML element?

I am using VSTS 2008 + C# + .Net 3.0.

EDIT 1: I am concatenating simple and short XML file and I do not use serialization, so I need to explicitly escape XML character by hand, for example, I need to put a, so I need escape string a

thanks in advance, George

flag

41% accept rate

5 Answers

vote up 1 vote down check
public static string XmlEscape(string unescaped)
{
    XmlDocument doc = new XmlDocument();
    var node = doc.CreateElement("root");
    node.InnerText = unescaped;
    return node.InnerXml;
}

public static string XmlUnescape(string escaped)
{
    XmlDocument doc = new XmlDocument();
    var node = doc.CreateElement("root");
    node.InnerXml = escaped;
    return node.InnerText;
}
link|flag
Cool, darin! I like your answer. – George2 Jul 15 at 16:57
3  
You don't even need to append the element to the document. However, I'd still say that it's best not to try to do this in the first place - it sounds like George is making work for himself by doing things by hand... – Jon Skeet Jul 15 at 17:01
Completely agree with you Jon. I didn't know that it wasn't necessary to append the node to make it work. That's why I love StackOverflow - I learn so many things every day. – Darin Dimitrov Jul 15 at 17:05
I really dislike this answer because it's too heavy-weight. XmlDocument is going to use XmlReader/XmlWriter to do the real work, so why not cut to the chase and avoid that heavy DOM? – Steven Sudit Jul 15 at 19:49
vote up 2 vote down

Not a single way, but here are a few:

http://weblogs.sqlteam.com/mladenp/archive/2008/10/21/Different-ways-how-to-escape-an-XML-string-in-C.aspx

link|flag
3  
The article mentions many alternatives, but the one that's usually the right answer is XmlWriter. – Steven Sudit Jul 15 at 16:36
Cool, Steven and marcc, how to un-escape? – George2 Jul 15 at 16:49
1  
I bet if you used the XmlTextWriter class (as Steven recommends), you could you the XmlTextReader class to unescape. – marcc Jul 15 at 16:58
@marcc: Yes, that's exactly what I'd recommend. – Steven Sudit Jul 15 at 19:48
vote up 4 vote down

EDIT: You say "I am concatenating simple and short XML file and I do not use serialization, so I need to explicitly escape XML character by hand".

I would strongly advise you not to do it by hand. Use the XML APIs to do it all for you - read in the original files, merge the two into a single document however you need to (you probably want to use XmlDocument.ImportNode), and then write it out again. You don't want to write your own XML parsers/formatters. Serialization is somewhat irrelevant here.

If you can give us a short but complete example of exactly what you're trying to do, we can probably help you to avoid having to worry about escaping in the first place.


Original answer

It's not entirely clear what you mean, but normally XML APIs do this for you. You set the text in a node, and it will automatically escape anything it needs to. For example:

LINQ to XML example:

using System;
using System.Xml.Linq;

class Test
{
    static void Main()
    {
        XElement element = new XElement("tag",
                                        "Brackets & stuff <>");

        Console.WriteLine(element);
    }
}

DOM example:

using System;
using System.Xml;

class Test
{
    static void Main()
    {
        XmlDocument doc = new XmlDocument();
        XmlElement element = doc.CreateElement("tag");
        element.InnerText = "Brackets & stuff <>";
        Console.WriteLine(element.OuterXml);
    }
}

Output from both examples:

<tag>Brackets &amp; stuff &lt;&gt;</tag>

That's assuming you want XML escaping, of course. If you're not, please post more details.

link|flag
Thanks Jon, I have put more details into my original post EDIT 1 section. Appreciate if you could give me some comments and advice. :-) – George2 Jul 15 at 16:40
"after XML escaping" -- you mean? Could you speak in some other words please? English is not my native language. :-) – George2 Jul 15 at 16:41
Hi Jon, how to un-escape from XML format into normal string format, i.e. from input "Brackets &amp; stuff &lt;&gt;", we get output "Brackets & stuff <>"? – George2 Jul 15 at 16:50
@George2: You ask the XElement for its Value, or the XmlElement for its InnerText. – Jon Skeet Jul 15 at 16:56
vote up 4 vote down

George, it's simple. Always use the XML APIs to handle XML. They do all the escaping and unescaping for you.

Never create XML by appending strings.

link|flag
Words to live by. There are many XML API options available, but the one thing we should all agree on is that manual string concatenation is not acceptable. – Steven Sudit Jul 15 at 19:51
vote up 1 vote down

SecurityElement.Escape(string s)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.