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