Re: HELP NEEDED ... Regd. Regular expressions PyQt

2007-02-05 Thread Neil Cerutti
On 2007-02-03, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I am trying to work out a regular expression in a PyQt > environment for time in hh:mm:ss format. Any suggestions? After you find your time in hh:mm:ss format, be sure to check out time.strptime for a quick conversion. -- Neil Cerutti

Re: HELP NEEDED ... Regd. Regular expressions PyQt

2007-02-04 Thread [EMAIL PROTECTED]
On Feb 3, 11:40 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: > 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

Re: HELP NEEDED ... Regd. Regular expressions PyQt

2007-02-03 Thread Marc 'BlackJack' Rintsch
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 h

Re: Regd. Regular expressions PyQt

2007-02-03 Thread David Boddie
On Saturday 03 February 2007 09:52, Paddy wrote: > On Feb 3, 8:24 am, [EMAIL PROTECTED] wrote: >> I am trying to work out a regular expression in a PyQt environment for >> time in hh:mm:ss format. Any suggestions? > > Yep, > Use Kodos! > http://kodos.sourceforge.net/ > > - It's Fab. There's al

Re: HELP NEEDED ... Regd. Regular expressions PyQt

2007-02-03 Thread Diez B. Roggisch
[EMAIL PROTECTED] schrieb: > Hello All: > I am trying to work out a regular expression in a PyQt environment for > time in hh:mm:ss format. Any suggestions? Yes. Read the manual to the re-module. There is _nothing_ special about PyQt and regexes. And provide code. But the most important thing - r

HELP NEEDED ... Regd. Regular expressions PyQt

2007-02-03 Thread vishal
Hello All: I am trying to work out a regular expression in a PyQt environment for time in hh:mm:ss format. Any suggestions? Thanks, Vishal -- http://mail.python.org/mailman/listinfo/python-list

Re: Regd. Regular expressions PyQt

2007-02-03 Thread Paddy
On Feb 3, 8:24 am, [EMAIL PROTECTED] wrote: > Hello All: > I am trying to work out a regular expression in a PyQt environment for > time in hh:mm:ss format. Any suggestions? > Thanks, > Vishal Yep, Use Kodos! http://kodos.sourceforge.net/ - It's Fab. - Paddy. -- http://mail.python.org/mailman/

Regd. Regular expressions PyQt

2007-02-03 Thread vishal
Hello All: I am trying to work out a regular expression in a PyQt environment for time in hh:mm:ss format. Any suggestions? Thanks, Vishal -- http://mail.python.org/mailman/listinfo/python-list