Hi everyone,
I have a text:
" Hi, I’m Henry. My email: abc@gmail.com and henry@gmail.com"
I want to result :
abc@gmail.com;henry@gmail.com
Thank,
Hi everyone,
I have a text:
" Hi, I’m Henry. My email: abc@gmail.com and henry@gmail.com"
I want to result :
abc@gmail.com;henry@gmail.com
Thank,
Hi @longnt23,
Use Matches activity
Properties
Input : YourInputString
Pattern : ([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)
Result: iEnumResult → IEnumberable<Match>
after that use assign activity to get the data
use for loop activity loop through the iEnumResult
you will get the all mail id.
Regards,
Arivu
regex.xaml (6.8 KB)
@longnt23
Thank you!
Hello @arivu96,
from where can we learn patterns you have any source please dispatch link?
Thanks,
Pankaj