• Home
  • Raw
  • Download

Lines Matching refs:beginning

186      place it at the beginning of the set.  For example, both ``[()[\]{}]`` and
289 beginning of the string being searched; you will most likely want to use the
309 match at the beginning of the string being searched.
338 Matches the empty string, but only at the beginning or end of a word. A word is
342 a ``\W`` character (or vice versa), or between ``\w`` and the beginning/end
351 Matches the empty string, but only when it is *not* at the beginning or end of a
496 When specified, the pattern character ``'^'`` matches at the beginning of the
497 string and at the beginning of each line (immediately following each newline);
500 matches only at the beginning of the string, and ``'$'`` only at the end of the
551 If zero or more characters at the beginning of *string* match the regular
557 at the beginning of the string and not at the beginning of each line.
611 beginning of another match.
624 matches are included in the result unless they touch the beginning of another
730 slicing the string; the ``'^'`` pattern character matches at the real beginning
749 If zero or more characters at the *beginning* of *string* match this regular
1123 :func:`re.match` checks for a match only at the beginning of the string, while
1133 Regular expressions beginning with ``'^'`` can be used with :func:`search` to
1134 restrict the match at the beginning of the string::
1142 beginning of the string, whereas using :func:`search` with a regular expression
1143 beginning with ``'^'`` will match at the beginning of each line.