> From: Marcel St�r [mailto:[EMAIL PROTECTED]
> 
> [EMAIL PROTECTED] wrote:
> > not tried:
> 
> I did. Works fine. Thanks a lot.
> 
> > match: (.*)\.(.*)\.(.*)\.(.*)
> > select: \1 my
> > \2 property
> > \3 56238912
> > \4 1285
> > but without check for digits or length.

Not tried either, but this should be close to enforcing the digits too:

(.*)\.(.*)\.(\d{8})\.(\d{4})

Predefined character classes:
.       Any character (may or may not match line terminators) 
\d      A digit: [0-9]

Greedy quantifiers:
X{n}    X, exactly n times

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to