Session Ready
Exercise

Exploring regular expression functions.

You have a vector of ten facts about your boss saved as a vector called text. In order to create a new ice-breaker for your team at work, you need to remove the name of your boss, John, from each fact that you have written down. This can easily be done using regular expressions (as well as other search/replace functions). Use regular expressions to correctly replace "John" from the facts you have written about him.

Instructions 1/4
undefined XP
  • 1
  • 2
  • 3
  • 4
  • Use grep() to find all items in text that contain your boss's name, John. Print off the text instead of the index.