title
Convert a string into titlecase.
def title(
value: string
) - > string
Convert a string into titlecase.
Parameters
| Name | Type | Description |
|---|---|---|
| value | string | The string value to be transformed into titlecase format. |
Returns
| Type | Description |
|---|---|
string | The input string converted to titlecase, with specific adjustments to ensure letters following apostrophes or digits remain lowercase. |