I am trying to find regex pattern in XSD that allow both positive and negative integers
My current code allows only positive integers.
xs:pattern val
Using the \d notation would make it even simpler:
\d
xs:pattern value="-?\d+"