Next in thread →
Next in month →
Re: AW: [xliff] Update value list
At Tue, 22 Oct 2002 14:27:08 +0200, Lieske, Christian <> wrote: > > From my understanding the following pattern would be > Better since our numbers may be composed of more than > one digit: > > <xsd:pattern value="(\d|#)+;(\d|#)+;(\d|#)+;(\d|#)+"/> You are right. We need quantifiers. To be more accurate to the spec, probably the following pattern will do. <xsd:pattern value="(-?\d+|#);(-?\d+|#);(-?\d+|#);(-?\d+|#)"/> An optional minus symbol followed by one or more digits or a pound sign. ------------------- Shigemichi Yazawa
Next in thread →
Next in month →