Urgent: Can anybody help with getting queue value only using regex form this text value

sample.txt (1.7 KB)

Number of Queues displayed : 24
number adjacent to this

Are you looking for this?
grafik
grafik

Regex.Match(strtext, strPattern).Groups(1).Value

1 Like

what’s the strpattern here?

the pattern from regex used within an assign:
strPattern = "(?<=Number of Queues Displayed:)(?:.*?)(\d+)"

[CheatSheet] - System.Text.RegularExpressions | RegEx - News / Tutorials - UiPath Community Forum

2 Likes

Thank you so soooo much :slight_smile:
That was a great help :slight_smile: Thanks for the link also

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