Answers for "apply regex to list python"

0

array search with regex python

import re

mylist = ["dog", "cat", "wildcat", "thundercat", "cow", "hooo"]
r = re.compile(".*cat")
newlist = list(filter(r.match, mylist)) # Read Note
print(newlist)
Posted by: Guest on June-13-2020
1

how to use regex in a list

# list filtering with regex
import re
l = ['...', 'ram', 'karan','..','......', '....']

pattern = re.compile("..+")
lst = [x for x in l if not re.match(pattern, x)]
print(lst)

# output 
['ram', 'karan']
Posted by: Guest on June-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language