How can i easily sanitize the values I pass into the Value property of an XAttribute.

link|improve this question

69% accept rate
1  
Define "sanitize" and you might get a useful answer. – spender Jul 8 '10 at 23:31
Well basically its throwing an error on save that it cant accept a certain character, '/0'. I assume there are other chars it cannot accept, so i was wondering if there is a method to remove them all. – Dested Jul 8 '10 at 23:32
1  
maybe add that info to the actual question... – Rex M Jul 8 '10 at 23:44
feedback

2 Answers

Here's an extension method to clean away your trouble. /0 is not allowed in XML. I'm not sure if other chars are also disallowed, but I believe not. Probably best to start at ' '.

void Main()
{

    Console.WriteLine("123\0394".XmlSanitize());

}

public static class XmlHelpers
{
    public static string XmlSanitize(this string badString)
    {
        return new String(badString.Where(c => c >=' ').ToArray());
    }
}
link|improve this answer
feedback

You could try:

string value = "!@#$%^&*()123%^&*(!@#\(*!&10987"
value = System.Security.SecurityElement.Escape(value);

This will escape characters that are invalid as XML attribute values.

link|improve this answer
Nice, but doesn't get rid of the \0. – spender Jul 8 '10 at 23:58
feedback

Your Answer

 
or
required, but never shown

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