From 0136da1ee5e9330bc8fcc6611bdb26eb8f0192ef Mon Sep 17 00:00:00 2001 From: jdmedlock Date: Fri, 29 Mar 2019 07:25:46 -0500 Subject: [PATCH] Refactor: Implement suggestions from PR #25 Implement suggestions from [PR #25](https://github.com/florinpop17/app-ideas/pull/25) Resolves: N/a See also: N/a --- Projects/RegExp-Helper-App.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Projects/RegExp-Helper-App.md b/Projects/RegExp-Helper-App.md index 7e0b5b05..d7cd69e9 100644 --- a/Projects/RegExp-Helper-App.md +++ b/Projects/RegExp-Helper-App.md @@ -3,8 +3,8 @@ **Tier:** 2-Intermediate Regular Expressions should be a valuable part of any developers toolbox. They -provide a concise way to describe a pattern that can be used by JavaScripts -RegExp object to test, search, match, replace, or split the contents of a +provide a concise way to describe a pattern that can be used to test, search, +match, replace, or split the contents of a string. Regular Expressions provide functionality you might otherwise have to implement using loops and more lines of code. @@ -19,7 +19,8 @@ you use in your apps. - [ ] User can click a 'Run' button to test - [ ] User can see a warning message if no regular expression was entered. - [ ] User can see a warning message if no string was entered. -- [ ] User can see a message indicating if `test()` was able to locate the pattern in the string. +- [ ] User can see the matching text highlighted indicating if `test()` was able to locate the pattern in the string. +- [ ] User can see a message if none of the text was matched. ## Bonus features