Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

readme.md

Python Regular Expression

A RegEx or Regular Expression is a sequences of characters that forms a search pattern. RegEx can be used to check if a string contains the specified search pattern.

Contents of RegEx

  • RegEx Module - Python has build-in RegEx module re. We can import it through import re.
  • RegEx Functions
  • RegEx Metacharacters
  • RegEx Special Sequences
  • RegEx Sets
For better understanding go through the codes