[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]
- Re: Finding and replacing a UNICODE string. Philip Newton
- Re: Finding and replacing a UNICODE string. Philip Newton
- RE: Finding and replacing a UNICODE string. kevin . burton
- Re: Finding and replacing a UNICODE string. Philip Newton
- Re: Finding and replacing a UNICODE string. Philip Newton
- RE: Finding and replacing a UNICODE string. kevin . burton
- RE: Finding and replacing a UNICODE string. kevin . burton
- RE: Finding and replacing a UNICODE string. Philip Newton
- RE: Finding and replacing a UNICODE string. Douglas Wilson
- Re: Finding and replacing a UNICODE string. Ned Konz
- RE: Finding and replacing a UNICODE string. Doug Wilson
- RE: Finding and replacing a UNICODE string. Doug Wilson