Method | Description | |
---|---|---|
Capitalize ( string s ) : string | ||
IsCamelCase ( string s ) : bool | ||
IsCapitalized ( string s ) : bool | ||
IsKebabCase ( string s ) : bool | ||
IsPascalCase ( string s ) : bool | ||
IsSnakeCase ( string s ) : bool | ||
ToCamelCase ( string s ) : string | ||
ToKebabCase ( string s ) : string | ||
ToPascalCase ( string s ) : string | ||
ToSnakeCase ( string s ) : string | ||
Words ( string s ) : IEnumerable |
Method | Description | |
---|---|---|
CamelToSnake ( string s ) : string | ||
ContainsLetters ( string s ) : bool | ||
FilterForLetters ( string s ) : string | ||
IsLetter ( char c ) : bool | ||
IsLower ( char c ) : bool | ||
IsUpper ( char c ) : bool | ||
KebabToSnake ( string s ) : string | ||
Normalize ( string s ) : string |
normalize a string to snake_case, that way we only need to write one conversion for every other casing snake case was chosen because snake and kebab case are the easiest to convert out of
|
|
OtherToSnake ( string s ) : string | ||
PascalToSnake ( string s ) : string |