Vinutha_L
(Vinutha L)
November 10, 2020, 10:10am
1
Hi guys,
I need to fetch only a specific string in the given below image.
Here am doing screen scraping and using for each loop where in each item am getting a large string(given below) which is uneven. I need only ‘Adams, Julie’ (referring to first image ) and ‘Mallouk-PM2,Peter’( referring second image)
1 Like
You can use regular expression for Name and based on that you can split string on behalf of all String.
Hi All,
This is not related with Uipath but Im using a regex solution and I can not handle with the below situation.
I have expressions like
009 G Nantpaipakdee 38 955 722 650-240-0111
002 Eugénie Romette 432 734 782
005 Christina Pandullo 410-527-8241 410-527-8158
020 Joe Smith 410-771-7815 410-527-8771
030 K Kordysiewicz 42 239 3875
And I need to identi…
Check this link definitely you will get your answer
you can use matches activity to get the required field by using this pattern (?<=Exec). *
Cheers
1 Like
Hello @Vinutha_L
I have another solution. Try this pattern:
(?<=Exec\s+)\b[^,]+,\s+[\w\d-]+
Hopefully this helps
If you want to Learn Regex - Check out my Regex Megapost
2 Likes
Vinutha_L
(Vinutha L)
November 10, 2020, 4:33pm
5
Hey @Steven_McKeering
Thanks a ton!! its working perfectly.
2 Likes
system
(system)
Closed
November 13, 2020, 4:33pm
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.