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

Possible Duplicate:
XML vs YAML vs JSON

I read a lot of things about xml, yaml and json and I know that each one is better in some cases than other. I just want to ensure that what i have in my mind is right...

json can be converted to yaml and xml

yaml can be converted to xml, and not always to json I read it from here: "Technically YAML is a superset of JSON. This means that, in theory at least, a YAML parser can understand JSON, but not necessarily the other way around." read here

xml cannot be converted always to yaml and json

share|improve this question
So what actually are you asking? – Felix Yan Jan 26 '12 at 3:33
If what i saying its correct – xoemab Jan 26 '12 at 3:35

marked as duplicate by nawfal, DocMax, John Koerner, Jesus Ramos, rds Jan 19 at 0:54

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

Yes, since XML is a bit "more-ish" than yaml, for example name-space support, it would be possible to construct examples of the former that would be at least difficult to represent completely in the latter.

And my understanding is that yaml was iterated to v1.2 specifically to become a superset of json, so what you say is true by definition.

If your point is in deciding which to use, my advice is to use the easiest and simplest for your immediate needs, and only go "upstream" in complexity (json --> yaml --> xml) if you really need to.

Unless your language of choice or other technical aspects of your use case already have robust support for the more complex choice, in which case it becomes the simpler to implement.

KISS

share|improve this answer
Thank you very much :D – xoemab Jan 27 '12 at 7:37

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