Hello,
I'm not very experienced with regex and I have a field I'm trying to parse the email information from whether it has an address or shows 'None'
INPUT:
[{'fullName': 'user name', 'email': 'user.name@emailaddress.com'}]
[{'email': None}]}, {'displayUserInfo': [{'email': None}]
[{'email': 'user@emailaddress.com'}]
[{'fullName': 'name user', 'email': 'nameuser@gmail.com', 'company': 'Company Name, LLC'}]
DESIRED:
user.name@emailaddress.com
None
user@emailaddress.com
nameuser@gmail.com
Using Regex101 I used the below and it does parse out the email address but it doesn't work in the RegEx tool.
\'email\'\:\s\'(.+?)\'

