Skip to Content Skip to Menu

Phone Number Format

  • nettop
  • nettop
  • OFFLINE
  • Posts: 51
  • Thanks: 3
  • Karma: 0
12 years 11 months ago #182209 by nettop
Phone Number Format was created by nettop
It is probably really simple, but I need a little help with the scripting. I want my user to enter their phone number in a text field (?) with just their numbers in this format 5555555555 and I want to display their phone number in lists and in their profile in this format (555) 555-5555 ... please advise. Thanks, Tim

Please Log in or Create an account to join the conversation.

  • beat
  • beat
  • OFFLINE
  • Posts: 2169
  • Thanks: 463
  • Karma: 352
12 years 11 months ago #182246 by beat
Replied by beat on topic Re: Phone Number Format
you can enforce the numbers-only entry with the regexp:

[0-9]*

for any number of digits

[0-9]{7,9}

for 7-9 digits (e.g.),

as validation server and browser-side.

Output re-formatting is not a standard CB feature. It is a nice feature-request though. I guess you could make a small modification of the ajax text field plugin for instance and by using sprintf() and sscanf() php functions reformat it.

Beat - Community Builder Team Member

Before posting on forums: Read FAQ thoroughly -- Help us spend more time coding by helping others in this forum, many thanks :)
CB links: Our membership - CBSubs - Templates - Hosting - Forge - Send me a Private Message (PM) only for private/confidential info

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum