Answers for "regex python list"

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
1

regex in python

# pip install regex
import re
# simple find all
sample = "Nothing lasts... but nothing is lost"
found = re.findall("thing", sample)
print(found)
Posted by: Guest on October-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language