MatchesXsByte🔗
Check that
text
conforms to the pattern of an xs:byte
.
Code
byteRep = (
'[\\-+]?0*[0-9]{1,3}'
)
pattern = (
f'^{byteRep}$'
)
return match(
pattern,
text
) is not None