For one off string searches, is it faster to simply use str.find/rfind than to use re.match/search?
That is, for a given string, s, should I use:
if s.find('lookforme') > -1:
do something
or
if re.match('lookforme',s):
do something else
?