If the same prefix is put on each tag then you can do it with list_re.
If the prefix must change according to the value of the tag, then things are much more interesting. It can be done in general program mode with a sequence of list_re, one for each value to change, but this will have bad performance. If you know some programming and python, then the best approach would be a custom formatter function, because you can loop over the values and generate whatever result you want.
|