I'm a newbie at using regex in c# and I'm trying to use it to validate a phone number with this format 09oxoxxxxxx where x can be any number and o can be only 1-9 and the total length should be 11 numbers. Here's what I think which is probably wrong.
if (Regex.IsMatch("09203041152", "^[0]{1}[9]{1}[1-9]{2}[1-9]{1}[0-9]{6}"))