Chas. Owens wrote:
On Tue, May 19, 2009 at 09:55, Alexander Koenig <alexander.koe...@mpi.nl> wrote:
snip
($a,$n,$x,$y)) = $item =~ /(.{5})\.(\d\d?)[-+](\d{1,4})\.(\d{1,4})/;
snip

As of Perl 5.8 \d no longer matches [0-9].
                              ^^^^^^^^^^^^^

As of Perl 5.8 \d no longer matches only [0-9].


It now matches any UNICODE character that has the digit property.


John
--
Those people who think they know everything are a great
annoyance to those of us who do.        -- Isaac Asimov

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to