I am trying to understand the regex section of xmlschema here: https://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#regexs
Specifically, when is a "^" interpreted as a literal caret and when is it interpreted as 'everything after me is excluded'.
According to the w3 specification do you interpret this pattern:
[a-zA-Z^abc]
as:
a) any lower followed by any upper followed by a caret and then a, b or c
or:
b) any lower followed by any upper followed by anything except a, b or c
TIA.
PS I am too new to be able to set tags for this question and to be honest I am not sure 100% for the tags for this question.
I would have liked to add xmlschema as a tag for this question but I cannot add new tags.
@any_moderator: feel free to update tags accordingly.