Question 1
Which python module is used to work with regular expressions?
Question 2
What is the purpose of the re.split() function in python?
Question 3
What dose the re.sub() function do in python?
Question 4
Which of the following flags is used to perform a case-insensitive search in regular expressions in python?
Question 5
Which function is used to retrieve information about the matching groups in a regular expression match object?
Question 6
Which character is used to match the end of a line in a regular expression pattern?
Question 7
What dose the re.compile() function do in python?
Question 8
Which function is used to escape special characters in a regular expression pattern?
Question 9
Which function is used to find all non-overlapping matches of a regular expression in a string?
Question 10
What is the purpose of the re.search() function in python?