From da29241e01d65936afa305e1e6d82d23456fcb31 Mon Sep 17 00:00:00 2001 From: PrialaRadu <116513225+PrialaRadu@users.noreply.github.com> Date: Wed, 24 Jan 2024 23:53:12 +0200 Subject: [PATCH] Update 006_Python_RegEx.ipynb --- 006_Python_RegEx.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/006_Python_RegEx.ipynb b/006_Python_RegEx.ipynb index 3fc5251..f156abb 100644 --- a/006_Python_RegEx.ipynb +++ b/006_Python_RegEx.ipynb @@ -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", @@ -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",