I need to to process a delimited text with xslt that looks like:
abc@mail;#6896;#def@mail;#7467;#hij@mail
The output should be a mailto: link with all addresses and I need to throw away the numbers between them. I am working on Sharepoint, so can only use XSLT 1.0
Edit: I found this question from about 7 years ago, that is almost the same: "Regular expression"-style replace in XSLT 1.0 In my case, it doing exactly the opposite: keeping the numbers and throwing out the mail addresses. Can someone help me how to modify the code in the address? update: as a workaround, I added the delimiter as prefix to my text, and the template works perfect.