Frage

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 value="[0-9]{0,10}"
War es hilfreich?

Lösung

Assuming you only mention an optional negative sign in front of the number:

xs:pattern value="-?[0-9]{0,10}"

Andere Tipps

Using the \d notation would make it even simpler:

xs:pattern value="-?\d+"

if you using python: example re.findall:

regex=re.findall(r'(-?[\d]+)',somestring)

*output: [negative integer, integer]

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top