SXML is an abstract syntax tree of an XML document. SXML is also a concrete representation of the XML Infoset in the form of S-expressions. The generic tree structure of SXML lends itself to a compact library of combinators for querying and transforming SXML.
(名無しさん)
[5] 例:
(WEIGHT (@ (unit "pound")) (NET (@ (certified)) 67) (GROSS 95) )
XML 表現:
<WEIGHT unit="pound"> <NET certified="certified">67</NET> <GROSS>95</GROSS> </WEIGHT>
(名無しさん)
[6] Sxmlcnv <http://www.netfort.gr.jp/~kiyoka/sxmlcnv/index_ja.html>
XML と SXML を相互変換するソフトウェアです。
(名無しさん)