From 23483f3ffb2140399fa3ddd0495f4ea9fc632fff Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Robert=20J=C3=A4schke?= <jaeschke@l3s.de>
Date: Thu, 24 Jan 2019 16:09:33 +0100
Subject: [PATCH] +Tipps

---
 notebooks/uebung_regex.ipynb | 90 ++++++++++++++++++++++++++++++++++--
 1 file changed, 87 insertions(+), 3 deletions(-)

diff --git a/notebooks/uebung_regex.ipynb b/notebooks/uebung_regex.ipynb
index 33461d5..5c34bb9 100644
--- a/notebooks/uebung_regex.ipynb
+++ b/notebooks/uebung_regex.ipynb
@@ -21,7 +21,7 @@
     "Ändern Sie den folgenden regulären Ausdruck, so dass alle \n",
     "positiven Muster erkannt werden, aber kein negatives Muster.\n",
     "\"\"\"\n",
-    "muster = re.compile(\" \") \n",
+    "muster = re.compile(\"Z\") \n",
     "positive = [\n",
     "    \"rap them\",\n",
     "    \"tapeth\",\n",
@@ -47,13 +47,97 @@
     "# testen, ob alle positiven Muster richtig erkannt werden\n",
     "positive_not_matched = [s for s in positive if not muster.findall(s)]\n",
     "if positive_not_matched:\n",
-    "    print(\"Folgende positive Muster wurden nicht erkannt:\", \", \".join(positive_not_matched))\n",
+    "    print(\"Folgende positiven Muster wurden nicht erkannt:\", \", \".join(positive_not_matched))\n",
     "\n",
     "# testen, ob keine negativen Muster erkannt werden\n",
     "negative_matched = [s for s in negative if muster.findall(s)]\n",
     "if negative_matched:\n",
-    "    print(\"Folgende negativen Muster wurden erkannt:\", \", \".join(negative_matched))\n"
+    "    print(\"Folgende negativen Muster wurden erkannt:\", \", \".join(negative_matched))\n",
+    "\n",
+    "if not positive_not_matched and not negative_matched:\n",
+    "    print(\"Herzlichen Glückwunsch, Sie haben das richtige Muster gefunden!\")"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Nachfolgend noch einige Beispiele zur Verwendung von regulären Ausdrücke mit Python:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Funktionen für reguläre Ausdrücke werden im Modul \"re\" bereitgestellt\n",
+    "import re\n",
+    "\n",
+    "# die Methode \"findall\" findet alle Teilzeichenketten in einer Zeichenkette,\n",
+    "# die auf das angegebene Muster passen \n",
+    "re.findall(\"cat|dog\", \"This sentence contains a dog.\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# die Methode \"match\" testet, ob die gesamte Zeichenkette auf das angegebene Muster passt \n",
+    "re.match(\".*dog\\\\.\", \"This sentence contains a dog.\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "re.match(\".*(cat|dog)\", \"This sentence contains a cat.\")"
    ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Mit \"match\" können wir beispielsweise unsere Ergebnisse für Aufgabe 1 prüfen:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "if re.match(\"[hc]?at\", \"cat\"):\n",
+    "    print(\"Wort wurde erkannt\")\n",
+    "else:\n",
+    "    print(\"Wort wurde nicht erkannt\")"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": []
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Es gibt eine umfangreiche eingebaute Hilfe:\n",
+    "help(re)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
   }
  ],
  "metadata": {
-- 
GitLab