Converting Perl Regex to Python!

thelocust at my-deja.com thelocust at my-deja.com
Mon Dec 4 15:54:37 EST 2000


I'm working on porting a program from Perl to Python, and i'm to a
point where I need to convert their Perl regex stuff over to python.
Now, I understand what is going on in the Perl if statement below, but
i haven't seen to many good examples of regex stuff for Python, so i'm
hurting for an translation

The string i need to grab the info from looks like this:

MSG notify timecode [00:00:00:00]

if ($msg =~ /^MSG notify timecode \[(\d\d:\d\d:\d\d):\d\d\]/) {
    $cajun->{state_clock}=$1;
    }

So, how exactly do i convert this to python?


Sent via Deja.com http://www.deja.com/
Before you buy.



More information about the Python-list mailing list