Hello,
i have created automation which fetches data from jira tickets but sometimes user puts sentences instead of mail id like below -
Please provide Jira license and BigPicture access to the following users: , kunalmathkar@abccompany.com swapnil@abccompany.com akshay@abccompany.com Access Type: Jira Access - e-collab Team Member BigPicture - Box Editor; requesting iHelpdesk intervention
here i only need to fetch my mail id so i am using regex and possibility that there will be one or more than 1 emails in this sentence.
so i am using below regex to identify one or more emails -
then checking with condition if no email then no action needed-
else if email is there then getting one by one email-
Here emailmatches is Enumerable variable
now my requirement is to get email which is at position 0 -kunalmathkar@abccompany.com
now my requirement is to get email which is at position 2- akshay@abccompany.com
how can i achieve that?
if i put currentitem(0) thenn it gives option strict on disallowed strict binding error.
please help me on same


