Regular Expression Matching

# Introduction In this lab, we need to write a function called `check_regex_match()` that takes two string arguments, `input_string` and `pattern`, and uses the Python `re` module to implement regular expression matching with support for `.` and `*`. The function should return `True` if a match is found, and `False` otherwise. The dot `.` in the pattern matches any single character, and the star `*` matches zero or more occurrences of the preceding character.

|60 : 00

Click the virtual machine below to start practicing