MatchesXsNonNegativeInteger🔗

Type: Pattern verification
Check that text conforms to the pattern of an xs:nonNegativeInteger.
text🔗
Text to be checked
Return🔗
True if the text conforms to the pattern

Code

nonNegativeIntegerRep = (
    '(-0|\\+?[0-9]+)'
)
pattern = (
    f'^{nonNegativeIntegerRep}$'
)
return match(
    pattern,
    text
) is not None