Merge pull request #1812 from AryanJ-NYC/AryanJ-NYC-1807

Fixes #1807
pull/1910/head
benmcmahon100 2015-08-17 20:22:55 +01:00
commit 9727f3e520
1 changed files with 1 additions and 1 deletions

View File

@ -993,7 +993,7 @@
"title": "Sift through Text with Regular Expressions",
"difficulty":"9.984",
"description":[
"<code>Regular expressions</code> are way to find certain words or patterns inside of <code>strings</code>.",
"<code>Regular expressions</code> are used to find certain words or patterns inside of <code>strings</code>.",
"For example, if we wanted to find the number of times the word <code>the</code> occurred in the string <code>The dog chased the cat</code>, we could use the following <code>regular expression</code>: <code>\/the+\/gi</code>",
"Let's break this down a bit:",
"<code>the</code> is the pattern we want to match.",