Regex to get number in between brackets

Hi i have the string like below and i want to return 83.

Email (83)

The below returns (83). how do i remove the brackets?

“(?<=Email )(([0-9]+?))”

Hi,

Hope the following helps you.

System.Text.RegularExpressions.Regex.Match(yourString,"(?<=Email \()\d+(?=\))").Value

Regards,

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