Simple-Match

Sat 17 May 2025

title: "Simple Match" author: "Raja CSP Raman" date: 2019-04-20 description: "-" type: technical_note draft: false


import re
content = "Eminem means positive"
a = re.search('^Em.*ve$', content)
if(a):
    print('matched')
else:
    print('not matched')
matched

More situations

  • Match Canadian postal code
  • Phone number
  • Start with /home
  • Contains /User/raja


Score: 5

Category: regex