Posts by Dhiogo Boza • 1 point
1 post
-
0
votes4
answers747
viewsA: Regex in Python to find several possible names
Hello, I created a version below with small changes in your regex: import re f_regex = re.compile(r'^(\b|.+\s)ju(iz|íza) |^(\b|.+\s)relato(r|a) |^(\b|.+\s)desembargado(r|ra) ', re.IGNORECASE)…