Suggested by Ryan Maclean – Completed
Add the ability to use RegEx to extract part of a string
For example, it would be useful to be able to parse part of a string and use this to search for related records. I use this to interrogate SMTP error codes returned on email sends, and to match postcodes to territories
For example, it would be useful to be able to parse part of a string and use this to search for related records. I use this to interrogate SMTP error codes returned on email sends, and to match postcodes to territories
RegexMatch('string', «regex»)
Example: Extract the first 3 digits of the input string
RegexMatch('abc1234def', «\d\d\d»)