Pergunta

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}"
Foi útil?

Solução

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

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

Outras dicas

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]

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top