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

Re: regular expressions


regular expresions
David Tolpin wrote:

>Some schema languages use string regular expressions to check lexical space of 
>attributes and character data. The regex strings often become uncomprehensible,
>such as
>
>(([a-zA-Z][0-9a-zA-Z+\-\.]*:)?/{0,2}[0-9a-zA-Z;/?:@&=+$\.\-_!~*'()%]+)?(#[0-9a-zA-Z;/?:@&=+$\.\-_!~*'()%]+)?
>
>for any URI. 
>
>Providing a structured syntax, similar to that for XML, would help reading and debugging
>them, for example,
>
>    s-pattern="""
>      comment = "\(([^\(\)\\]|\\.)*\)"
>      atom = "[a-zA-Z0-9!#$%&'*+\-/=?\^_`{|}~]+"
>      atoms = atom "(\." atom ")*"
>      person = "\"([^\"\\]|\\.)*\""
>      location = "\[([^\[\]\\]|\\.)*\]"
>      local-part = "(" atoms "|" person ")"
>      domain = "(" atoms "|" location ")"
>      start = "(" comment " )?" local-part "@" domain "( " comment ")?"
>    """
>
>instead of 
>
>    pattern=
>      "(\(([^\(\)\\]|\\.)*\) )?"
>    ~ """([a-zA-Z0-9!#$%&'*+\-/=?\^_`{|}~]+(\.[a-zA-Z0-9!#$%&'*+\-/=?\^_`{|}~]+)*|"([^"\\]|\\.)*")"""
>    ~ "@" 
>    ~ "([a-zA-Z0-9!#$%&'*+\-/=?\^_`{|}~]+(\.[a-zA-Z0-9!#$%&'*+\-/=?\^_`{|}~]+)*|\[([^\[\]\\]|\\.)*\])"
>    ~ "( \(([^\(\)\\]|\\.)*\))?"
>
>Why isn't it done?
> 
>
I always do that for our Java regular expresions:

String  s-pattern="\"";
String        comment = "\(([^\\(\)\\]|\\.)*\)";
String        atom = "[a-zA-Z0-9!#$%&'*+\-/=?\^_`{|}~]+";
String        atoms = atom + "(\."  + atom  + ")*";
String        person = "\"([^\"\\]|\\.)*\"";
String        location = "\[([^\[\]\\]|\\.)*\]";
String        local-part = "("  + atoms  + "|" +  person  + ")";
String        domain = "("  + atoms  + "|"  + location  + ")";
String        start = "("  +  comment  + " )?"  + local-part  + "@"  + domain  + "( "  + comment +  ")?";

or whatever. Crazy not to IMHO.

Cheers
Rick Jelliffe




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.