Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,210 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi.
I am struggling to extract an ID from an email subject.
The value is: "Re: [#4771] Slack Request",
I am attempting various split and trim but am having no luck. Any idea how I can extract the value 4771 from the above subject into a logic app variable?
Thanks in advance.
Nigel
I got this working using the following:
last(split(first(split(triggerBody()?['subject'],']')),'#'))