[EMAIL PROTECTED] wrote:
> Hello
>
> I am looking for python code that takes as input a list of strings
> (most similar,
> but not necessarily, and rather short: say not longer than 50 chars)
> and that computes and outputs the python regular expression that
> matches
> these string values (not necessarily strictly, perhaps the code is able
> to determine
> patterns, i.e. families of strings...).
>
> Thanks for any idea

def getRegex(list_of_strings):
   return ".*"

;-)

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to