Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以创建自定义逗号分隔的 IDREFS 类型。默认情况下,在 xsd 中我们有 xsd:IDREFS,它允许多个 IDEREF,但它们是空格分隔的。我需要允许逗号分隔的 aa 类型
您可以定义一个 xs:string 的子类型,它使用类似于
((\i\c+),\s*)*(\i\c+)
但当然它不会具有 IDREFS 类型的“引用”语义。