If I pass a value such as 123456789
, SOAP UI throws a validation error.
Any idea what is the correct regex for checking an integer pattern in SOAP UI?
Repeating the pattern [0-9] 9
times works though but [0-9]{9}
doesn't.
I am using something like the snippet below in my xsd file being referred to by my wsdl
<simpleType name="ZipCode">
<restriction base="integer">
<pattern value="^\d{9}$"/>
</restriction>
</simpleType>