如果您发布了输入 XML,可能会更具体。
假设您的示例输入 XML 不同,我将发布答案:
示例输入 XML:
<?xml version="1.0" encoding="utf-8"?>
<testing>68</testing>
XSD:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="testing" type="citycode" />
<xs:simpleType name="citycode">
<xs:restriction base="xs:int">
<xs:pattern value="68"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
示例输入 XML:
<?xml version="1.0" encoding="utf-8"?>
<testing>Blah blah City code is: 68</testing>
XSD [使用正则表达式模式]:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="testing" type="pattern" />
<xs:simpleType name="pattern">
<xs:restriction base="xs:string">
<xs:pattern value=".*68"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
任何字符在哪里.*
(换行除外),68 - 数字 68
另一个示例输入 XML:
<?xml version="1.0" encoding="utf-8"?>
<testing>Blah blah City code is: '68' and something else</testing>
XSD:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="testing" type="pattern" />
<xs:simpleType name="pattern">
<xs:restriction base="xs:string">
<xs:pattern value=".*68.*"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>