I want to validate if a certain attribute is a valid regex. Is there some direct built in type in xml schema maybe xs:regex?

Otherwise is there a regex that defines valid regexes?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

There is, by definition, no regex that can validate regular expressions.

Regular expressions can match regular languages, they are not themselves a regular language. Much like there can be no regular expression to validate HTML or JavaScript.

To find out if a string is a legal regular expression, it's easiest to try and create a regex object from it. In XSD itself this is impossible, so you'd need the help of an external tool.

link|improve this answer
thanks, nice that's just like xsd is no valid xsd. – Franz Kafka Sep 7 '11 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.