I am reviewing the c# code of an application and documenting. While going through the code, I seen an unusual regular expression for US Phone Number. The regular expression is below
@"^[01]?[- .]?(\([2-9]\d{2}\)|[2-9]\d{2})[- .]?\d{3}[- .]?\d{4}$";
My conclusion from the above phone number would be like 01.(29).123.4567 or 01-38-111-1111.
Am I interpreting correctly? Any insight into that regular expression is highly appreciated. Examples for above regular expression would help me to learn more about regular expressions.