Regular Expression is a seaquence of characters that forms a search pattern.
RegEx Functions:
Search: returns a Match object if there is a match anywhere in the string.
Findall: returns a list containing all matches.
Split: returns a list where the string has been split at each match.
Sub: replaces one or many matches with a string.