Let's suppose I have a pattern defined like this:
import re
pattern = re.compile(r'http\://(?P<host>\d+\.\d+\.\d+\.\d+)\:(?P<port>\d+)')
This pattern helps me parse a string to extract host and port parameters. But what if a need a reverse action: to build a string using this pattern and host and port values? Is there an elegant way to do it? Or I have to define a separate string pattern to format for this purpose?
import re
pattern = re.compile(r'http\://(?P<host>\d+\.\d+\.\d+\.\d+)\:(?P<port>\d+)')
values = {'host': '192.168.1.5', 'port': 80}
s = some_elegant_function(pattern, values)  # <--- What is here???
print(s)  # http://192.168.1.5:80 - expected result
I've had a look at the question: Generate a String that matches a RegEx in Python
It does not provide an answer, because the subject is about a set of relevant output strings without passing any parameters that I need in my case.
