Lines Matching full:re
11 import re
21 It calls re.compile for a given pattern. It also allows adding
34 self.regex = re.compile(string, flags=flags)
55 return f're.compile("{self.regex.pattern}")'
67 Handles a re.match storing its results.
75 Handles a re.search storing its results.
83 Alias to re.findall.
90 Alias to re.split.
97 Alias to re.sub.
113 even harder on Python with its normal re module, as there are several
130 Although I re-implemented it to make it more generic and match 3 types
164 RE_DELIM = re.compile(r'[\{\}\[\]\(\)]')
220 This is similar to re.search:
232 This is similar to re.sub:
241 it will work just like re: it places there the matched paired data