From b742e16eda8bed92c8c0e0d2ef80fe1c427f478a Mon Sep 17 00:00:00 2001 From: ReiiNoki Date: Sun, 6 Feb 2022 20:15:50 +0900 Subject: [PATCH] Update 12_day_regular_expressions.md --- 12_Day_Regular_expressions/12_day_regular_expressions.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/12_Day_Regular_expressions/12_day_regular_expressions.md b/12_Day_Regular_expressions/12_day_regular_expressions.md index 99d85f0..90c281f 100644 --- a/12_Day_Regular_expressions/12_day_regular_expressions.md +++ b/12_Day_Regular_expressions/12_day_regular_expressions.md @@ -505,11 +505,12 @@ distance = 12 sentence = `%I $am@% a %tea@cher%, &and& I lo%#ve %tea@ching%;. There $is nothing; &as& mo@re rewarding as educa@ting &and& @emp%o@wering peo@ple. ;I found tea@ching m%o@re interesting tha@n any other %jo@bs. %Do@es thi%s mo@tivate yo@u to be a tea@cher!?` console.log(cleanText(sentence)) - ``` + ``` ```sh I am a teacher and I love teaching There is nothing as more rewarding as educating and empowering people I found teaching more interesting than any other jobs Does this motivate you to be a teacher - ``` + ``` + 1. Write a function which find the most frequent words. After cleaning, count three most frequent words in the string. ```js