vaishali
(vaishali)
1
Hi Team,
date code charge
05/14/2024 1234 Tb test bbb
05/14/2024 g123 aa bbb uuu
05/14/2024 5678 yyy uuu iii 32
From the above text i need to extract only 1234 , g123, 5678
Here date is dynamic its not static one
Any suggestions? To the code alone
Thanks
vrdabberu
(Varunraj Dabberu)
2
Hi @vaishali
Try this:
(?<=\d+\/\d+\/\d+\s+)[a-z0-9]+
Regards
vaishali
(vaishali)
3
I have tried this but i am able to extract only first line code not other line
vrdabberu
(Varunraj Dabberu)
4
Hi @vaishali
Can you share the screenshot of the flow.
Regards
postwick
(Paul Ostwick)
5
You need to use System.Text.RegularExpressions.RegEx.Matches not .Match
.Matches gives you an array of all the matching values.
vrdabberu
(Varunraj Dabberu)
6
Hi @vaishali
Check the below workflow:
Sequence6.xaml (7.8 KB)
Output:

Regards
vrdabberu
(Varunraj Dabberu)
8
Glad to have helped @vaishali
Happy Automation!!
system
(system)
Closed
9
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.