Ok, so I know I can use this to format the US phone numbers:
=
"Phone: " +System.Text.RegularExpressions.Regex.Replace(iif(IsNothing(Fields!MAIN_PHONE.Value),"N/A",Fields!MAIN_PHONE.Value), "(\d{3})[ -.]*(\d{3})[ -.]*(\d{4})", "($1) $2-$3")However, I have been given the US and Internation phone numbers in the same field. So, how do I write code to format the phone number for either format?
Any help is appreciated!