diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-16 05:58:12 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-16 05:58:12 (GMT) |
commit | f275803fe9839218afec165a51d0e7217964d248 (patch) | |
tree | 29287cd22fcbef22d0a4e3a2d4f45338f0e307e7 /Doc | |
parent | 0e4cd7f26758e1a96e8c0ae1a9fa8d340b952acf (diff) | |
download | cpython-f275803fe9839218afec165a51d0e7217964d248.zip cpython-f275803fe9839218afec165a51d0e7217964d248.tar.gz cpython-f275803fe9839218afec165a51d0e7217964d248.tar.bz2 |
Clarify the descriptions of the positive and negative lookbehind assertions.
Added examples of positive lookbehind assertions.
This closes SF bug #529708.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libre.tex | 39 |
1 files changed, 30 insertions, 9 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index ca829df..9bad62a 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -272,18 +272,39 @@ followed by \code{'Asimov'}. \item[\code{(?<=...)}] Matches if the current position in the string is preceded by a match for \regexp{...} that ends at the current -position. This is called a positive lookbehind assertion. -\regexp{(?<=abc)def} will match \samp{abcdef}, since the lookbehind -will back up 3 characters and check if the contained pattern matches. -The contained pattern must only match strings of some fixed length, -meaning that \regexp{abc} or \regexp{a|b} are allowed, but \regexp{a*} -isn't. +position. This is called a \dfn{positive lookbehind assertion}. +\regexp{(?<=abc)def} will find a match in \samp{abcdef}, since the +lookbehind will back up 3 characters and check if the contained +pattern matches. The contained pattern must only match strings of +some fixed length, meaning that \regexp{abc} or \regexp{a|b} are +allowed, but \regexp{a*} and \regexp{a\{3,4\}} are not. Note that +patterns which start with positive lookbehind assertions will never +match at the beginning of the string being searched; you will most +likely want to use the \function{search()} function rather than the +\function{match()} function: + +\begin{verbatim} +>>> import re +>>> m = re.search('(?<=abc)def', 'abdef') +>>> m.group(0) +'def' +\end{verbatim} + +This example looks for a word following a hyphen: + +\begin{verbatim} +>>> m = re.search('(?<=-)\w+', 'spam-egg') +>>> m.group(0) +'egg' +\end{verbatim} \item[\code{(?<!...)}] Matches if the current position in the string -is not preceded by a match for \regexp{...}. This -is called a negative lookbehind assertion. Similar to positive lookbehind +is not preceded by a match for \regexp{...}. This is called a +\dfn{negative lookbehind assertion}. Similar to positive lookbehind assertions, the contained pattern must only match strings of some -fixed length. +fixed length. Patterns which start with negative lookbehind +assertions will may match at the beginning of the string being +searched. \end{list} |