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
4 changes: 2 additions & 2 deletions 006_Python_RegEx.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
"source": [
"### 6. `+` - Plus\n",
"\n",
"The plus symbol **`+`** matches **zero or more occurrences** of the pattern left to it.\n",
"The plus symbol **`+`** matches **one or more occurrences** of the pattern left to it.\n",
"\n",
"| Expression | String | Matched? | \n",
"|:----| :--- |:--- |\n",
Expand All @@ -238,7 +238,7 @@
"source": [
"### 7. `?` - Question Mark\n",
"\n",
"The question mark symbol **`?`** matches **zero or more occurrences** of the pattern left to it.\n",
"The question mark symbol **`?`** matches **zero or one occurrence** of the pattern left to it.\n",
"\n",
"| Expression | String | Matched? | \n",
"|:----| :--- |:--- |\n",
Expand Down