Is there any converter from data in DB to XML?
Yohanes Santoso <[EMAIL PROTECTED]> wrote: jadol <[EMAIL PROTECTED]>
writes:
> salam,..
>
> saya mau menanyakan tentang cara converting xml to yaml,
> setelah hunting d google saya hanya menemukan script untuk conversi dari
> yaml to xml saja,
Di blog entry yang sama juga dijelaskan xml -> yaml. Saya rubah
codenya sedikit dengan membuang yang tidak diperlukan:
require 'yaml'
require 'xmlsimple'
good_xml = %{
<groceries>
<bread>Wheat</bread>
<bread>Quadrotriticale</bread>
</groceries>}
puts "----------------"
doc = XmlSimple.xml_in good_xml
pp doc
puts doc.to_yaml
YS
---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.
[Non-text portions of this message have been removed]