string_inflections
💬 Use String Inflection Helpers​
ActiveSupport adds powerful inflection methods on String
to convert between naming conventions or format text. Methods like camelize
, underscore
, titleize
, and parameterize
help maintain consistent code and URLs.
"admin_user".camelize # => "AdminUser"
"AdminUser".underscore # => "admin_user"
"hello world".titleize # => "Hello World"
"Rails Rocks!".parameterize # => "rails-rocks"