The Inflector transforms words from singular to plural, class names to table names, modularized class
names to ones without, and class names to foreign keys.
| C# | Visual Basic | Visual C++ |
public static class Inflector
Public NotInheritable Class Inflector
public ref class Inflector abstract sealed
| All Members | Methods | ||||
| Icon | Member | Description |
|---|---|---|
| Camelize(String) |
Camelizes the specified lowercase and underscored word.
| |
| Capitalize(String) |
Capitalizes the specified word.
| |
| Dasherize(String) |
Dasherizes the specified underscored word.
| |
| Humanize(String) |
Humanizes the specified lowercase and underscored word.
| |
| Ordinalize(String) |
Ordinalizes the specified number.
| |
| Pascalize(String) |
Pascalizes the specified lowercase and underscored word.
| |
| Pluralize(String) |
Pluralizes the specified word.
| |
| Singularize(String) |
Singularizes the specified word.
| |
| Titleize(String) |
Titleizes the specified word.
| |
| Uncapitalize(String) |
Uncapitalizes the specified word.
| |
| Underscore(String) |
Underscores the specified pascal cased word.
|
Inflector is rails inspired code developed by Andrew Peters.
http://andrewpeters.net/inflectornet/
| Object | |
| Inflector | |