Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 14-Strings-and-Regular-Expressions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1813,7 +1813,7 @@
"| ``?`` | Match zero or one repetitions of preceding | ``\"ab?\"`` matches ``\"a\"`` or ``\"ab\"`` |\n",
"| ``*`` | Match zero or more repetitions of preceding | ``\"ab*\"`` matches ``\"a\"``, ``\"ab\"``, ``\"abb\"``, ``\"abbb\"``... |\n",
"| ``+`` | Match one or more repetitions of preceding | ``\"ab+\"`` matches ``\"ab\"``, ``\"abb\"``, ``\"abbb\"``... but not ``\"a\"`` |\n",
"| ``{n}`` | Match ``n`` repetitions of preeeding | ``\"ab{2}\"`` matches ``\"abb\"`` |\n",
"| ``{n}`` | Match ``n`` repetitions of preceding | ``\"ab{2}\"`` matches ``\"abb\"`` |\n",
"| ``{m,n}`` | Match between ``m`` and ``n`` repetitions of preceding | ``\"ab{2,3}\"`` matches ``\"abb\"`` or ``\"abbb\"`` |"
]
},
Expand Down