why are you converting to a double? if you already have the phone number as a string in strOriginalPhoneNumber and it is already 9 characters long ...
FormatPhoneNumber_Out = string.Format("{0}.{1}.{2}
Main Topics
Browse All Topicshi there; using asp.net (vb) i have phone numbers stored in the database in the following format:
9999999999
i would like to display them on my page as:
999.999.9999
i am using the following function:
Protected Function FormatPhoneNumber_Out(ByVa
Dim i As Long
If Len(strOriginalPhoneNumber
Dim rxp As System.Text.RegularExpress
strOriginalPhoneNumber = Regex.Replace(strOriginalP
FormatPhoneNumber_Out = Double.Parse(strOriginalPh
End Function
this function works fine to display the phone number as (999) 999-9999 however, when i substitute in periods (instead of the brackets and dash), it displays as 9999999999 on the page.
suggestions?
thanks all.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
why are you converting to a double? if you already have the phone number as a string in strOriginalPhoneNumber and it is already 9 characters long ...
FormatPhoneNumber_Out = string.Format("{0}.{1}.{2}
hi, wht1986; thanks for the response. i tried iimplementing your approach but got the following error:
Index and length must refer to a location within the string.
Parameter name: length
played around with your code for a bit but with no luck. however, rather than using substring, i used left, mid and right which solved the problem.
below is my working code:
Protected Function FormatPhoneNumber_Out(ByVa
'format the phone number to display on the page as ... 999.999.9999
If strOriginalPhoneNumber <> "" Then
FormatPhoneNumber_Out = String.Format("{0}.{1}.{2}
End If
End Function
thanks for setting me on the right path.
Business Accounts
Answer for Membership
by: techprocessPosted on 2009-06-16 at 21:51:51ID: 24644920
get this((999) 999-9999 ) in a string and then
str.Replace("(",".");
same goes for other bracket and hyphen(-)....
hope this helps.... :)