Are there any helpers that will convert / delete the string as a valid XML name?
For example, I have a string max(OfAll) and you need to generate some XML, for example,
<max(OfAll)>SomeText</<max(OfAll)>
This is clearly not a valid name, are there any helper methods that can convert the string to the correct xml name?
(For comparison, .NET has some methods that would be higher: x /
<max_x028_OfAll_x028_>SomeText</<max_x028_OfAll_x028_>)
source share