Pergunta

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

Foi útil?

Solução

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

<pattern value="&quot;|'"/>
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top