Howdy!
I'm trying to get my head around some simple pattern matching or regular expressions using python.
Basically I want to be able to match "Failed 0.00/100.00", where 0.00 could be any decimal number.
I know using perl it would be something along the lines of "\d+\.\d+\/100\.0", but could anybody point me in the right direction?
Thanks!