Hi All,
Can anyone advise on best way to extract the highlighted text from screenshot below.

Thanks in Advance.
Hi All,
Can anyone advise on best way to extract the highlighted text from screenshot below.

Thanks in Advance.
@vkshambhu …will this follow the same syntax?
I.e 3 letter alphabets / 3 letter alphabets / 2 digits numbers space alphabet number ?
@vkshambhu - Please try this out
RegEx Pattern: \S+/\d+\s\S+
Please refer this Regex mega post for your learnings…
@vkshambhu - Could you please share your workflow screen shot?..
Sure ,
System.Text.RegularExpressions.Regex.Match(strInput,“\S+/\d+\s\S+”).Value.Trim
System.Text.RegularExpressions.Regex.Match(strInput,“\S+/\d+\s*\S+”).Value
Attaching .xaml for referenceregexBetweenLabel.xaml (5.1 KB)
@vkshambhu - Please see my output…
.
XAML:
I have used IsMatches Activty and used that output in the For Each Loop
Thank you. Can you pls upload the .xaml as well.
@vkshambhu - Here you go… Regex_VKS.zip (35.1 KB)