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