This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 4012 - Regex syntax pattern='\p{Nd}{4}-\[{Nd}{2}'
Summary: Regex syntax pattern='\p{Nd}{4}-\[{Nd}{2}'
Status: RESOLVED FIXED
Alias: None
Product: XML Schema Test Suite
Classification: Unclassified
Component: Microsoft tests (show other bugs)
Version: 2006-11-06
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Henry S. Thompson
QA Contact: XML Schema Test Suite mailing list
URL:
Whiteboard: metadata update and schema fix confir...
Keywords:
Depends on:
Blocks:
 
Reported: 2006-11-24 17:15 UTC by Michael Kay
Modified: 2008-11-02 16:32 UTC (History)
0 users

See Also:


Attachments

Description Michael Kay 2006-11-24 17:15:28 UTC
Test reDG2 in testSet MS-Regex2006-07-15

uses the regex syntax pattern='\p{Nd}{4}-\[{Nd}{2}'

which is invalid ({Nd} is not a valid quantifier)

But the test is described as valid.
Comment 1 Michael Kay 2008-06-20 15:22:39 UTC
It appears that the intent of this test was to use the valid pattern

pattern='\p{Nd}{4}-\p{Nd}{2}'

in place of

pattern='\p{Nd}{4}-\[{Nd}{2}'

Fixed the schema to use the corrected pattern.