How extract data in brackets

hi i need to extract the number inside brackets

for example : HELP DESK SERVICES(0060263002)

i need 0060263002

@manojv02500
we can do it with regex:
grafik

(?<=\()\d+(?=\))

1 Like

actually the number keeps changing i need whatever is there in between ()

@manojv02500
it is doing this and will retrieve each number / digits
feel free to play with it on https://regex101.com/

i am getting this value in a variable how to use regex

@manojv02500
have a look here:
grafik
Regex.Match(strText,"(?<=\()\d+(?=\))").toString

find starter help here:
Sequence2.xaml (5.5 KB)

1 Like

@manojv02500

Use Matches Activity as below

Hope this helps you

Thanks

is it ok i am getting expected result

(?<=\()\d+(?=\)) please notice the backslash before ( and )

so when it is working any other open questions?

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