The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DateTime::Format::Natural::EN - Create machine readable date/time with natural parsing logic

SYNOPSIS

 use DateTime::Format::Natural::EN;

 $parse = DateTime::Format::Natural::EN->new();

 $dt = $parse->parse_datetime($date_string);

DESCRIPTION

DateTime::Format::Natural::EN consists of a method, parse_datetime(), which takes a string with a human readable date/time and creates a machine readable one by applying natural parsing logic.

FUNCTIONS

new

Creates a new DateTime::Format::Natural::EN object.

parse_datetime

Creates a DateTime object from a human readable date/time string.

 $dt = $parse->parse_datetime($date_string);

 $dt = $parse->parse_datetime(string => $date_string, lang => 'en', debug => 1);

The options may contain the keys string, lang & debug. string may consist of the datestring, whereas debug holds the boolean value for the debugging option. If debugging is enabled, each token that is analysed will be output to stdout with a trailing newline. Finally, lang contains the language selected, currently limited to en (english) & ge (german).

The string & lang options are necessary.

Returns a DateTime object.

EXAMPLES

See the modules DateTime::Format::Natural::Lang::* for a overview of valid input.

format_datetime

Not implemented yet.

SEE ALSO

DateTime, Date::Calc, http://datetime.perl.org/

AUTHOR

Steven Schubiger <schubiger@cpan.org>

LICENSE

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html