[EMAIL PROTECTED] wrote:
>              {                # Capture to $1
>                  (?:  # Group
>                   [0-9]\x00   # Digit followed by \x00
>                   )+  # One or more
>              }                # End capturing to $1

Capturing parentheses should be ( ) and not { }.

>          }{
>              my $number = $1;
>              $number = tr/\x00//d;

Should be =~ , as Ned Konz said. My bad.

Cheers,
Philip

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to