Extract Email and Website from String
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello,
I am trying to extract email and website from string if exist any into two separate columns
I am stuck on Regex Replace function .
Is there anyway to extract email and website from string
I have attached my packaged workflow
Solved! Go to Solution.
- Labels:
- Regex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You're about 99% of the way there.
Just some slight modifications to the matching regex you used, then put it in the Regex tool with the Parse setting and you'll be there.
It just needs to include more characters at the start of the string:
Once you've got the full email address, I'd use a formula tool with replace(body,email,'') and then re-run a Regex extract for the website.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks for reply ,
can you share your workflow please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks for the workflow
I tried that but i observed that i am getting incomplete emails
like instead of this mostafa24966@hotmail.com i am getting this6@hotmail.com
Can you help me to resolve this issue?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Remove .* in front of your regex expression.
