You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
Some text
|
|
|
|
#!python
|
|
def __init__ (self, pattern) :
|
|
self.pattern = pattern
|
|
self.compiled_re = re.compile("^(.*)%s(.*)$" % pattern, re.DOTALL)
|
|
|
|
def getCompiledRegExp (self) :
|
|
return self.compiled_re
|
|
|
|
More text |