time_parser

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

time parser

A Dart libraty that parses a time string and returns a time object in order to easily access hours and minutes
Format #
A valid time string has the format:
^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$
copied to clipboard
Usage #
A simple usage example:
Parsing a valid time string
import 'package:time_parser/time_parser.dart';

void main() {
var time = Time.parse('15:30');
print('hours: ${time.hours}, minutes: ${time.minutes}');
// => hours: 15, minutes: 30
}
copied to clipboard
An Exception is thrown when time string is not valid
import 'package:time_parser/time_parser.dart';

void main() {
try {
TimeParser.parse('xx:xx');
} catch(TimeParseException) {
print(e);
// => TimeParseException: invalid timeString: xx:xx
}
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.