Question

How is it possible to create an regular expression within an XSD (pattern) that contains both quotes and apostrophes? I get you can check for one using the other as the value delimiters.

<pattern value="'"/>
<pattern value='"'/>

but what if you need to check for both?

<pattern value=""'"/>
<pattern value=''"'/>

simply dont work

Était-ce utile?

La solution

You can use &apos; or &quot;, for example :

<pattern value="&quot;|'"/>
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top