Python Forum
How can I find all combinations with a regular expression? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How can I find all combinations with a regular expression? (/thread-34072.html)



How can I find all combinations with a regular expression? - AlekseyPython - Jun-23-2021

Python 3.9.5

I wrote the following code:
pattern_space = '[\s]+'
pattern_name= '(.{4,})'
pattern =  pattern_name + pattern_space + '(street|town){1}' + pattern_space + pattern_name
result = re.search(pattern, 'Boston town street Coco')
And I got:
Output:
Boston town street Coco
I also want to get a valid variant:
Output:
Boston town street Coco
How can I get ALL the possible variants?