在我的
XML模式中,我有一个字符串类型的元素,我不想要是空的(如果它包含空格等等,我也认为它是空的)
原文链接:https://www.f2er.com/xml/292778.html我在http://blogs.msdn.com/b/neerajag/archive/2005/08/12/450723.aspx发现了限制
<xsd:restriction base = "xsd:string"> <xs:minLength value="1" /> <xs:pattern value=".*[^\s].*" /> </xsd:restriction>
这个模式究竟是做什么的,会做什么我期望的?