We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87de8a commit f8711edCopy full SHA for f8711ed
Regular-Expressions/Match-Letters-of-the-Alphabet/script.js
@@ -0,0 +1,3 @@
1
+let quoteSample = "The quick brown fox jumps over the lazy dog.";
2
+let alphabetRegex = /[a-z]/gi;
3
+let result = quoteSample.match(alphabetRegex)
0 commit comments