|
Perl 5.14, this year's stable release of the Perl 5 language, is the first in the planned series of annual time-based releases announced last year. From the Perl developer's point of view it has several important features:
Unicode
Perl 5.14 has Unicode 6.0 support and other unicode-related improvements, the most the important being the 'unicode_strings' feature which instructs the compiler to use Unicode semantics rather than the traditional Perl's native Unicode model therefore alleviating issues associated with it (see "The UTF8 flag" in Unicode issues in Perl.)
Regular Expressions
New regular expression modifiers let you explicitly use ASCII, Unicode, or locale semantics for character classes regardless of the strings internal encoding. This means that for example use locale 'greek' on a Unicode string, the regular expression will operate only on Greek characters
Also a handy a non-destructive version of the substitution operator is introduced with the /r flag. This means that the target string is not modified but instead the processed string is returned hence you can replace code like the following :
use 5.010000; my $name="a1b2c3d"; my $temp; $temp = $name =~ s/\d/x/g; say $temp; #prints: 3 which is #the number of substituted characters say $name; prints: axbxcxd
or this which keeps the target string ($name) intact while storing the resulted string in $temp:
use 5.010000; my $name="a1b2c3d"; my $temp; ( $temp = $name ) =~ s/\d/x/g; say $temp; #prints: axbxcxd say $name; #prints: a1b2c3d
with code using the new /r modifier:
my $name="a1b2c3d"; $temp=$name =~ s/\d/x/gr; say $temp; #prints: axbxcxd say $name; #prints: a1b2c3d
Syntactical Enhancements
Array and hash container functions accept references; for example, the array operators (push, pop, shift, unshift) were operating on named arrays but now also operate on array references as well
(For a deeper explanation see "Perl strongly typed?" in Strong typing)
The following example won't compile on pre 5.14 installations :
my @a=(1,2,3); my @b=(4,5,6);
my $array_ref=\@a; push $array_ref,@b;
print @a;
#Type of arg 1 to push must be array (not #scalar dereference) at c:\1.pl line 5, #near "@b;"\ #Execution of c:\1.pl aborted due to #compilation errors.
while in 5.14 it will produce the following :
#prints: 123456
Exception Handling
Better exception handling, not in the sense of SEH with try catch clauses but fixed some issues making it more reliable.

Other enhancements include specifying any character with its ordinal value in octal and that srand() now returns the seed.
Some features were deprecated as part of the language clean up. For all the details check the Perl 5.14 delta.
The massive task of updating all Activestate module packages (PPM) 5.14 has already begun and you can check the PPM index pages for the latest updates.
If you would like to be informed about new articles on I Programmer you can either follow us on Twitter or Facebook or you can subscribe to our weekly newsletter.
A Swarm Of Humanoid Robots! 25/05/2013
You might think that this is just another attempt to squeeze a video of a group of dancing Nao robots into the pages of an otherwise completely serious magazine. You might be right, but this isn't jus [ ... ]
|
Apple 1 Sold For Record Price of $668K 26/05/2013
An online action held yesterday had a veritable treasure trove of computing history and has the distinction of achieving a world record price for an Apple 1 for the second time in six months.
| | More News |
<ASIN:143022715X>
<ASIN:0321496949>
<ASIN:159059391X>
<ASIN:0596520107>
<ASIN:0596000278> |