Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a requirement like this :

starting tag : < start >

ending tag : < end >

So how to convert < end > tag to < /start > tag so that it becomes a proper xml

share|improve this question
String.replace()? I dunno, you're question is really broad. You can't just replace all your ending tags with xml ones? – Chad La Guardia Aug 10 '11 at 14:39
<start/> is proper XML, it is an empty element with no attributes. Same with <end/>. – Jarrod Roberson Aug 10 '11 at 14:42
Wait...is he saying there is a different tag for the start and end? OR is that his way of talking about the format? – Chad La Guardia Aug 10 '11 at 14:46
Ya there is different tag for both start and end – freepublicview Aug 11 '11 at 4:07

closed as not a real question by Jarrod Roberson, Pere Villega, Bill the Lizard Aug 10 '11 at 14:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

<start /> is a well formed xml. It is a shortcut for <start></start>

share|improve this answer

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