Python Regex search ( ) function - Coding exercise
Explore how to use the Python regex search function through a coding exercise that involves modifying an email string. Learn to identify and apply the correct regex methods to locate and replace parts of a string, enhancing your understanding of Python's re module functions.
We'll cover the following...
The Search Function Exercise
Let’s assume that we have a string variable called email, where email = "hello@scitake_outentificprogramming.io" passed to a function called regex_processor() in the following code.
Can you remove the word "take_out" and print the email address "hello@scientificprogramming.io"?
Your task is to replace the '?' on the line 8 with the correct function name (match or search ?) and replace he ? marks on the line 12 with correct match object function calls (hint: m.end() and m.start()).