[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

XML Schema: regular expression challenge

  • From: "Roger L. Costello" <costello@m...>
  • To: xml-dev@l...
  • Date: Wed, 09 Aug 2000 11:09:58 -0400

xml schema regular expressions
Hi Folks,

I am trying to write an XML schema which declares an element, foo, to be
a string, 5-10 characters in length, OR empty.  For example, here are
valid instances of foo:

    <foo>HiThere</foo>
or 
    <foo></foo>

Here's my attempt at a declaration for foo:

    <element name="foo">
        <simpleType base="string">
            <pattern value="([a-z]|[A-Z]){5,10}|()"/>
        </simpleType>
    </element>

In an instance document when I set the content of foo to be empty:

    <foo></foo>

Oracle's schema processor gives me an error.  That either means that

(a) Oracle's schema processor has a bug, or
(b) My regular expression is not correct.

Let's assume that it is the later.  Any suggestions on how else to
express the regular expression?  Note that the following regular
expressions also failed:

    ([a-z]|[A-Z]){5,10}|(){0}
    ([a-z]|[A-Z]){5,10}|(.){0}

As an aside, if an element contains a string of length=0, is that
element "empty"? and thus the element can be expressed as <foo/>?

/Roger


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.