Hi all,
How do I Concatenate the below string:
“Please use the following address to contact me john.doe@localcompany.com on the company”
Welcome to uipath community
What string do you need to concatenate ? Can you give us a sample string?
You Can try with +
. Check out the screenshot for you understanding
Hi @Gokul001
I just need to concatenate the below to just read the email address as output:
“Please use the following address to contact me john.doe@localcompany.com on the company”
In this input you need to get only the Email address as an output?
If try with this following
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=contact\sme\s)\S.*(?<=\.com)").Tostring
Regards
Gokul
It worked:) Thank you @Gokul001
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.