xs:ID 允许的正确 ID 名称是什么?
What are the correct xs:ID allowable id names?
我正在尝试为其中一个标签的 id
属性定义 ID。文档和 xsd 架构要求确认使用 xs:id
.
设置的 ID
我试过 "ID_123"
有效,但当我尝试 "123"
时,它没有。我在谷歌上搜索了很多选项和一些例子,但除了 here.
的文字外找不到任何东西
有人可以在这里提供一些例子吗?允许使用哪些字符?据我了解,任何字母数字字符都应该有效,但似乎应该有字母(或单词 ID
?)和数字的组合。
W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes 定义 xs:ID
:
[Definition:] ID
represents the ID
attribute type from[XML].
The ·value space· of ID is the set of all strings that ·match· the
NCName
production in [Namespaces in XML]. The ·lexical space·
of ID is the set of all strings that ·match· the NCName
production in [Namespaces in XML]. The ·base type· of ID is
NCName
.
NCName制作限制了可以使用的字符:
[4] NCName ::= NCNameStartChar NCNameChar* /* An XML Name, minus the ":" */
[5] NCNameChar ::= NameChar - ':'
[6] NCNameStartChar ::= NameStartChar - ':'
[4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] |
[#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] |
[#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] |
[#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] |
[#x10000-#xEFFFF]
[4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 |
[#x0300-#x036F] | [#x203F-#x2040]
在众多限制中,请特别注意 xs:ID
s 不能在名称中的任何位置包含 :
个字符,并且不能将数字作为第一个名字的字符。
因此,您的 ID_123
是正确的 NCName
,但 123
不是,因为它以数字开头。
我正在尝试为其中一个标签的 id
属性定义 ID。文档和 xsd 架构要求确认使用 xs:id
.
我试过 "ID_123"
有效,但当我尝试 "123"
时,它没有。我在谷歌上搜索了很多选项和一些例子,但除了 here.
有人可以在这里提供一些例子吗?允许使用哪些字符?据我了解,任何字母数字字符都应该有效,但似乎应该有字母(或单词 ID
?)和数字的组合。
W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes 定义 xs:ID
:
[Definition:]
ID
represents theID
attribute type from[XML]. The ·value space· of ID is the set of all strings that ·match· theNCName
production in [Namespaces in XML]. The ·lexical space· of ID is the set of all strings that ·match· theNCName
production in [Namespaces in XML]. The ·base type· of ID isNCName
.
NCName制作限制了可以使用的字符:
[4] NCName ::= NCNameStartChar NCNameChar* /* An XML Name, minus the ":" */ [5] NCNameChar ::= NameChar - ':' [6] NCNameStartChar ::= NameStartChar - ':' [4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF] [4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040]
在众多限制中,请特别注意 xs:ID
s 不能在名称中的任何位置包含 :
个字符,并且不能将数字作为第一个名字的字符。
因此,您的 ID_123
是正确的 NCName
,但 123
不是,因为它以数字开头。