http://qs321.pair.com?node_id=360017

Formatting a date:
use POSIX 'strftime'; my $today = strftime '%d/%m/%Y %H:%M', localtime; $today =~ s!(\d{2})/(\d{2})/(\d{4})!$3-$2-$1!;
Retrive an index of array element:
my @array = ('One', 'Two', 'Three', 'Four', 'Five'); sub get_element_index($@) { my $el = shift; $_ eq $el && return @_ while $_ = pop; -1; } print get_element_index('Four', @array); # Res: 3 print get_element_index('Six', @array); # Res: -1
Use constant in regexp
use constant TEST => 'test'; my $var = 'test'; if($var =~ qr{${\TEST}}) { print 'OK!' } else { print 'Not matched!' }
or if all constants are in the special package and access to them is realized using OO notification:
my $var = 1; if($var =~ qr{#{\C->TEST_CONST}}) { print 'OK!' } else { print 'Not matched!' }
Go to top page:
Advantages of this features is that nothing adds to the browser history:
<a href=#top onClick='scrollTo(0,0); return false;'> <font color=#FFFFFF>TOP</font> </a>
Initialize array by fixed data:
my @array = (2) x 10; __DATA__ [2,2,2,2,2,2,2,2,2,2]