Hi!
i need to replace an undefined tags inside an xml string.
example: <abc> <>sdfsd <dfsdf></abc><def><movie></def>
(only <abc>
and <def>
are defined)
should result with: <abc> <>sdfsd <dfsdf></abc><def><movie><def>
<>
and <dfsdf>
are not predefined as and and does not have a closing tag.
it must be done with a regex!. no using xml load and such.
i'm working with C# .Net
Thanks!