
Hi,
I assumed it to be simple, turned out to be much more difficult than I thought :(.
I have the email subject as:
1. Your School ID 123 – FirstName – LastName – Here are your Assessment results.
or
2. Your School ID 123 – FirstName – MiddleName - LastName – Here are your Assessment results.
I want to convert this string into an array(may using split) using the "-" delimiter.
Hi @Vimukt ,
Cause '–' and '-' are different.
Please try:
split(replace(variables('Email Subject'),'-','–'),'–')
Best Regards,
Bof