If I had a phone number like this
string phone = "6365555796";
Which I store with only numeric characters in my database (as a string), is it possible to output the number like this:
"636-555-5796"
Similar to how I could if I were using a number:
long phone = 6365555796;
string output = phone.ToString("000-000-0000");
I've tried searching and all I could find online were numeric formatting documents.
The reason I ask is because I think it would be an interesting idea to be able to store only the numeric values in the DB and allow for different formatting using a Constant string value to dictate how my phone numbers are formatted. Or am I better off using a number for this?
EDIT: The question is to format a string that contains numbers, not a number itself.