String
Properties & methods
- String#camelize( )
- Lower case underscored words will be returned in camel case. Additionally '/' is translated to '::'
- String#capitalize( )
- Return the string with only the first letter being uppercased
- String#dasherize( )
- Replace spaces or underscores with dashes
- String#ordinalize( )
- Renders all found numbers their sequence
- String#pluralize( )
- Pluralize a string
- String#singularize( )
- Singularize a string
- String#titleize( )
- Capitalizes words as you would for a book title
- String#underscore( )
- Camelized strings will be returned in underscored format