DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Date Formatting In Perl
// will use POSIX's strftime
use POSIX qw/strftime/; print strtftime( '%a. %Y.%m.%d %H:%M', localtime );





