Regex pattern 3numbers followed by hyphen followed by 10numbers anywhere in a word file

I want to extract a text that exist anywhere in a word file that is having a pattern like 000-1223333…ie 3numbers followed by hyphen followed by 10numbers

Any suggestion using regex…

Regex pattern would be

\d{3}-\d{10}

Regards,
Karthik Byggari

@syed1994 Have a look Here

Can you pls write it as a expression… Like
System.text.regular expression.regex(…)

@syed1994

Try this:

System.Text.RegularExpressions.Regex.Match(inputString,“\d{3}-\d{10}”).Value