From d8a85b4704d73405271c0d558b3ea787cf27d3f3 Mon Sep 17 00:00:00 2001 From: Elizabeth Humphries Date: Fri, 21 Jul 2023 15:29:01 -0400 Subject: [PATCH] [Understanding] Remove redundant sentence --- 06-understanding_other_ppl_code.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06-understanding_other_ppl_code.Rmd b/06-understanding_other_ppl_code.Rmd index 78373162..986d8d59 100644 --- a/06-understanding_other_ppl_code.Rmd +++ b/06-understanding_other_ppl_code.Rmd @@ -218,7 +218,7 @@ ottrpal::include_slide("https://docs.google.com/presentation/d/1MCNeSO4aOm1iESWD ## Example Three: Interpreting Regex -Regex (short for Regular Expressions) is a powerful tool used to describe patterns in text. It's a sequence of characters that define a search pattern. Regular expressions can be a powerful tool for data cleaning, text mining, and data validation. They are widely used in web development, data science, and other fields where text processing is important. They can also be tricky to understand at first because they involve a specific syntax that can be complex. +Regex (short for Regular Expressions) is a sequence of characters that define a search pattern. Regular expressions can be a powerful tool for data cleaning, text mining, and data validation. They are widely used in web development, data science, and other fields where text processing is important. They can also be tricky to understand at first because they involve a specific syntax that can be complex. We can use [ChatGPT](https://chat.openai.com/) to explain regex in a bit of someone else's code.