Tagged Questions

3
votes
2answers
1k views

How To Parse XML With Invalid Characters in Node Name?

So I'm trying to parse some XML, the creation of which is not under my control. The trouble is, they've somehow got nodes that look like this: <ID_INTERNAL_FEAT_FOCUSED_EXPERTISE_(MORNINGSTAR) ...
3
votes
3answers
999 views

Will string.Trim() ever remove *valid* characters from a filename?

I'm creating a class to store a filename. To do so, I need to know exactly which characters are invalid and exactly which characters are invalid as leading/trailing characters. Windows Explorer ...
2
votes
1answer
110 views

How to stop .net Xml Serialisation inserting illegal characters

Anything below 0x20 (except for 0x09, 0x0a, 0x0d i.e. tab, carrige return and line feed) cannot be included in an XML document. I have some data coming out of a Database and being passed as a ...