Hello
I hope this is the right place to voice this. I am trying to use
XMLBeans to compile the ECMA 376 (Open Office) xsd files into a
ooxml-schemas.jar. I have noticed that when I compile using scomp that
I get the following error.
vml.xsd:470:7: error: pattern-regex: The regular expression
'1{0-1}[0-9]{0-3}f' is malformed: Invalid quantifier. Invalid quantity
or a '}' is missing.
The line in question is <xsd:pattern value="1{0-1}[0-9]{0-3}f" />
This IS an invalid regular expression... Based on what it appeared to
be trying to do I substituted the following line and it passed
<xsd:pattern value="^1{0,1}[0-9]{0,3}f" />
Just more of an FYI than anything.
Michael Holly