Hello, I am trying to use this formula on the Cellular Alternate Phone Number:
Regex.Replace(AlternatePhone.CellularPhoneNumber, @“(\d{3})(\d{3})(\d{4})”, “+1 $1-$2-$3”)
This expression will not validate. Any ideas?
Also noted, this expression does validate:
Regex.Replace(Employment.WorkPhoneNumber, @“(\d{3})(\d{3})(\d{4})”, “+1 $1-$2-$3”)