these are some of indonesia phone number
08xxxxxxxxx (Consist of minimal 11 char length)
08xxxxxxxxxxx (always started with 08)
i found this one is useful
Regex regex = new Regex(@"08[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]");
but, it only support for 12 character, if i change them into the following regex
Regex regex = new Regex(@"08[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]");
it only support for 11 character, how do i make regex for validating to begins with 08
and minimal length is 11?