I have a template string for example:
`https://example.api/${id2}/pictures/${id}`
I need to convert it into another string with argument names and not actual values. Output should look like this:
"https://example.api/id2/pictures/id"
Is there a way of doing it?