Convert the character sequence hold by the input string to title case
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | string |
elemental function to_title_string(string) result(titlecase_string) type(string_type), intent(in) :: string type(string_type) :: titlecase_string titlecase_string%raw = to_title_(maybe(string)) end function to_title_string