In <[EMAIL PROTECTED]>, vishal wrote: > I am trying to work out a regular expression in a PyQt environment for > time in hh:mm:ss format. Any suggestions?
Maybe don't use a re for something that simple. Splitting at ``:``
characters, converting to `int` and checking the value ranges isn't that
hard without a regular expression.
Ciao,
Marc 'BlackJack' Rintsch
--
http://mail.python.org/mailman/listinfo/python-list
