Domanda

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

È stato utile?

Soluzione

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

<pattern value="&quot;|'"/>
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top