Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2530d4e commit 77980a7Copy full SHA for 77980a7
1 file changed
Lib/re.py
@@ -20,7 +20,7 @@
20
"$" Matches the end of the string.
21
"*" Matches 0 or more (greedy) repetitions of the preceding RE.
22
Greedy means that it will match as many repetitions as possible.
23
- "+" Matches 0 or more (greedy) repetitions of the preceding RE.
+ "+" Matches 1 or more (greedy) repetitions of the preceding RE.
24
"?" Matches 0 or 1 (greedy) of the preceding RE.
25
*?,+?,?? Non-greedy versions of the previous three special characters.
26
{m,n} Matches from m to n repetitions of the preceding RE.
0 commit comments