@technobuddha > library > String
Case Conversion
| Name | Type | Description |
|---|---|---|
| capitalize | Function | Capitalize the first word in a sentence, or capitalize a single word. |
| matchCase | Function | Attempt to convert the input string into the same case as the target string |
| startCase | Function | Converts a given string to start case, capitalizing the first letter of each word and converting the rest to lowercase. |
| titleCase | Function | Convert a string to a title, capitalizing each word, except for the small words |
| uncapitalize | Function | Capitalize the first word in a sentence, or capitalize a single word. |