Regular Expression - regex - Python

a sequence of characters used to check whether a pattern exists in a given text (string) or not help manipulte textual data

re library - Functions

Repetitions

{x} –> x times. {x,} –> x times, at least {x, y} –> between x and y times

## Code Examples

Notes

shutil