If you need to get an email from an Azure DevOps work item (e.g. from the « Changed By » field), it might be tricky in Power Apps Flow because it will return « John Doe <john@doe.com> ».
To only extract the email from this string, you’ll have to use the below:
first(split(last(split([YOUR_FIELD],'<')),'>'))