Merge pull request #43 from JonathanSum/patch-2

proofreading ch5
This commit is contained in:
Jeremy Howard
2020-03-15 12:05:13 -07:00
committed by GitHub

View File

@@ -161,7 +161,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The most powerful and flexible way to extract information from strings like this is to use a *regular expression*, also known as a *regex*. A regular expression is a special string, written in the regular expression language, which specifies a general rule for for deciding if another string passes a test (i.e., \"matches\" the regular expression), and also possibly for plucking a particular part or parts out of that other string. \n",
"The most powerful and flexible way to extract information from strings like this is to use a *regular expression*, also known as a *regex*. A regular expression is a special string, written in the regular expression language, which specifies a general rule for deciding if another string passes a test (i.e., \"matches\" the regular expression), and also possibly for plucking a particular part or parts out of that other string. \n",
"\n",
"In this case, we need a regular expressin that extracts the pet breed from the file name.\n",
"\n",