Home | History | Annotate | Download | only in tools

Lines Matching refs:start_pattern

3123 def _GetTextInside(text, start_pattern):
3132 start_pattern must match string having an open punctuation symbol at the end.
3137 start_pattern: The regexp string indicating where to start extracting
3151 match = re.search(start_pattern, text, re.M)
3152 if not match: # start_pattern not found in text.
3157 'start_pattern must ends with an opening punctuation.')
3159 'start_pattern must ends with an opening punctuation.')