I think you need to take care of escape characters and replace ' with `
Use the back quote to match a string without escaping.
https://learn.microsoft.com/en-us/azure/data-factory/data-flow-expressions-usage#regexMatch
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How to validate email in ADF - mapping data flow. I am using below regex in my conditional split transformation in ADF, but getting error. Same regex is working fine in my local python program. Please help.
regexMatch(email,'^([a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,})$')
I think you need to take care of escape characters and replace ' with `
Use the back quote to match a string without escaping.
https://learn.microsoft.com/en-us/azure/data-factory/data-flow-expressions-usage#regexMatch