Home | History | Annotate | Download | only in scripts

Lines Matching refs:start_pattern

3087 def _GetTextInside(text, start_pattern):
3096 start_pattern must match string having an open punctuation symbol at the end.
3101 start_pattern: The regexp string indicating where to start extracting
3115 match = re.search(start_pattern, text, re.M)
3116 if not match: # start_pattern not found in text.
3121 'start_pattern must ends with an opening punctuation.')
3123 'start_pattern must ends with an opening punctuation.')