method
number_to_phone
v1.2.6 -
Show latest stable
-
0 notes -
Class: ActionView::Helpers::NumberHelper
- 1.0.0 (0)
- 1.1.6 (0)
- 1.2.6 (4)
- 2.0.3 (8)
- 2.1.0 (0)
- 2.2.1 (0)
- 2.3.8 (2)
- 3.0.0 (0)
- 3.0.9 (-1)
- 3.1.0 (0)
- 3.2.1 (10)
- 3.2.8 (-1)
- 3.2.13 (0)
- 4.0.2 (0)
- 4.1.8 (0)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (9)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (-38)
- 7.1.3.4 (0)
- 7.2.3 (0)
- 8.0.0 (0)
- 8.1.1 (2)
- What's this?
number_to_phone(number, options = {})
public
Formats a number into a US phone number. You can customize the format in the options hash.
- :area_code - Adds parentheses around the area code.
- :delimiter - Specifies the delimiter to use, defaults to "-".
- :extension - Specifies an extension to add to the end of the generated number
- :country_code - Sets the country code for the phone number.
number_to_phone(1235551234) => 123-555-1234 number_to_phone(1235551234, :area_code => true) => (123) 555-1234 number_to_phone(1235551234, :delimiter => " ") => 123 555 1234 number_to_phone(1235551234, :area_code => true, :extension => 555) => (123) 555-1234 x 555 number_to_phone(1235551234, :country_code => 1)

