如果 DTD 中存在属性,如何验证该属性不为空?

发布于 2024-10-13 05:11:12 字数 199 浏览 2 评论 0原文

我有一个属性:

preprocessFile CDATA #IMPLIED

我希望此属性为:

  1. 如果存在,则允许不存在
  2. ,非空字符串

如何在 DTD 中表达此属性?为了尽量减少争论,请假设我了解 rng/xsd 并且无法将它们用于此特定任务。

I have an attribute:

preprocessFile CDATA #IMPLIED

I want this attribute to be:

  1. allowed to be absent
  2. if present, a non-empty string

How can I express this in a DTD? For the sake of minimizing argument, please assume that I know about rng/xsd and cannot use them for this particular task.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

余生再见 2024-10-20 05:11:12

无法使用 XML DTD 来验证属性是否存在,并且该属性不能为空。

以下是您的选项:

  1. 您可以设置默认值。例如 preprocessFile CDATA "novalueprovided"
  2. 您可以允许它不存在(请参阅上面的示例)。

无论哪种情况,您都可以在 XML 解析代码中强制属性“不存在或不为空”。

There is no way using an XML DTD to validate that if an attribute is present it must not be empty.

Here are your options:

  1. You can set a default value. For example preprocessFile CDATA "novalueprovided"
  2. You can allow it to be absent (see your example above).

In either case, you can enforce the attribute to be "absent or not empty if present" in your XML parsing code.

愚人国度 2024-10-20 05:11:12

我同意 DwB 的观点,即这超出了 DTD,即使有上面​​的建议,它仍然允许显式指定空字符串。但由于 DTD 也不允许任何数据类型规范,因此这符合图片,因为您不仅需要字符串数据类型,还需要长度限制。当然,任何真正的模式语言,如 RNG (RelaxNG) 或 XML:Schema 都可以轻松支持这样的检查,这里给出了 RNG:

<optional>
    <attribute name="preprocessFile">
       <data type=string">
          <minLength value="1"/>
       </data>
    </attribute>
</optional>

I agree with DwB, that this is beyond DTD, which even with the suggestions above would still allow to specify the empty string explicitly. But since DTD also permits no data type specifications, this fits within the picture, since your are not only requiring the string data type but additionally a length restriction. Of course any real schema language like RNG (RelaxNG) or XML:Schema easily supports a check like this, RNG given here:

<optional>
    <attribute name="preprocessFile">
       <data type=string">
          <minLength value="1"/>
       </data>
    </attribute>
</optional>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文