Help with regex expresion

Hello, can somebody please help me with my regex expresion. The regex should be extrect “DA”, in the all examples.

can you check:


(?<=da/ne*))(.|\n)*?(\w+)
while refering to group 2
grafik

Hi, Thank you. Can you please tell me how can I use only group 2 in UiPath?

have a look here for trainings
[CheatSheet] - System.Text.RegularExpressions | RegEx - News / Tutorials - UiPath Community Forum

Group Access we can do e.g. when iterating over all matches and access the match variable from loop:
myMatch.Groups(2).Value

grafik

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.