DIY: Regular Expression Matching
Understand how to implement regular expression matching in Rust using '.' and '*' operators. This lesson helps you develop a function to determine if an input string fully matches a given pattern, enhancing your skills for coding interviews that involve pattern matching challenges.
We'll cover the following...
We'll cover the following...
Problem statement
Suppose you are given an input string s and a pattern p. You have to implement regular expression matching with support for “.” and “*” where:
'.'can match any single character.