I have the following code:
import re
string = 'c:\test.doc'
if re.match(r":\\[0-9a-z]", string):
##r":\\[0-9a-z]" should match ':\t'
print 'true'
else:
print 'false'
the problem I am having is that this is always evaluating to false.