Jump to content

regular expression for empty attribute


joecool2005

Recommended Posts

Hi,I have a tag in XML like this:<myemail email="john@hotmail.com" />and I define my regular expression to validate the email.But sometime the email attribute can be empty like this<myemail email="" />How can you define a regular expression for that situation?ThxJoe

Link to comment
Share on other sites

Hi,I tried the following and it seems that using type=string allows you to have empty attribute. (but if you change to integer, email can't be empty)

<xs:element name="myemail">	<xs:complexType>  <xs:attribute name="email" type="xs:string" use="required"/>	</xs:complexType></xs:element>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...