mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
100b0774fe
create DateTime parser classes and objects. PR: 54022 Submitted by: Mathieu Arnold <m@absolight.net>
12 lines
544 B
Plaintext
12 lines
544 B
Plaintext
DateTime::Format::Builder creates DateTime parsers. Many string formats of
|
|
dates and times are simple and just require a basic regular expression to
|
|
extract the relevant information. Builder provides a simple way to do this
|
|
without writing reams of structural code.
|
|
|
|
Builder provides a number of methods, most of which you'll never need, or at
|
|
least rarely need. They're provided more for exposing of the module's innards
|
|
to any subclasses, or for when you need to do something slightly beyond what I
|
|
expected.
|
|
|
|
WWW: http://datetime.perl.org/
|