borismh
(Boris)
1
good, I don’t have much knowledge in regex and how to set the rule to extract certain words, that’s why my query
I would like to extract the data that is underlined, this data can be dynamic but it has the same format ### - ########

in uipath study I need to establish a correct rule, since I am selecting all the numbers and I only want the ones below including their script
@borismh - Please try this…

Regex Patter: (?<=.*\r\n\w\s)\d{3}-\d{7} → If this didn’t work…
Update: Try this - (?<=\n\w\s)\d{3}-\d{7}
Refer this Regex Mega post
3 Likes
borismh
(Boris)
3
Excuse the notepad, I did not show some symbols in the input, so now I do not get the result

@borismh - Do you always get that ° symbol after that N?
1 Like
@borismh - Here you go

Pattern: (?<=\n\w.\s)\d{3}-\d{7}
1 Like
system
(system)
Closed
7
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.