'' Confirm the phone number in this format: 999-999-9999
Imports System.Text.RegularExpressions
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
Dim phoneNumber As New Regex("\d{3}-\d{3}-\d{4}")
If phoneNumber.IsMatch(TextBox1.Text) Then
TextBox2.Text = "Valid phone number"
Else
TextBox2.Text = "Not Valid phone number"
End If
End Sub
End Class
'' Confirm the phone number in this format (999) 999-9999
Private Sub Button1_Click_1(sender As System.Object, _
e As System.EventArgs) Handles Button1.Click
Dim phoneNumber As New Regex("\(\d{3}\)\d{3}-\d{4}")
If phoneNumber.IsMatch(TextBox1.Text) Then
TextBox2.Text = "Valid phone number"
Else
TextBox2.Text = "Not Valid phone number"
End If
End Sub