How to use wildcard in Python regular expression?


The following code uses the Python regex .()dot character for wildcard which stands for any character other than newline.

Example

import re
rex = re.compile('th.s')
l = "this, thus, just, then"
print rex.findall(l)

Output

This gives the output

['this', 'thus']

Updated on: 20-Feb-2020

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements