换行符/换行符字符验证XSD

时间:2012-03-29 04:19:54

标签: regex xsd

我想验证并限制换行符/换行符。

有效的XML:

<root>
  <node>data data</node>
</root>

无效的XML:

    <root>
      <node>data
data</node>
    </root>

我不知道如何使用RegEx。换行符或换行符可能出现在数据的任何位置,而该XML应该被称为无效。

1 个答案:

答案 0 :(得分:1)

帮助自己。这是一个答案。 (根据Petru的评论进行了更新..因此,相信Petru而非:)

<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="root">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="node" type="SUBTYPE" />
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:simpleType name="SUBTYPE">
    <xs:restriction base="xs:string">
      <xs:pattern value=".*"/>
    </xs:restriction>
  </xs:simpleType>
</xs:schema>