開發和下載開源軟體

瀏覽 XMLBNF: a simple BNF for XML

category(Tag) tree

file info

category(Tag)
About Developent
檔案名
xmlbnf
最後更新
2004-08-04 19:26
類型
Plain Text
editor
shin
描述
a short description for a BNF like notation for XML schema
語言
English
translate
XML BNF -- 

simple BNF for XML. 

<<tag1>> == <tag1 attr1 attr2 /> |     --- (1)
            <tag1 {attr1, attr2}/> |   --- (2)
            <tag1><<tag2>>*</tag1> |   --- (3)
            <tag1><<tag2>>+</tag1> |   --- (4)
            <<tag2>>|<<tag3>> --- (5)

(1) <<tag1>> is a <tag1 attr1='val1' attr2='val2'/>
(2) <<tag1>> has a attribute attr1 or attr2
(3) <<tag1>> is <tag1>...</tag1> and ... is 0 or more <<tag2>>
(4) <<tag1>> is <tag1>...</tag1> and ... is 1 or more <<tag2>>
(5) <<tag1>> is <<tag2>> or <<tag3>>