Return the character sequence represented by the string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | string |
pure function char_string(string) result(character_string) type(string_type), intent(in) :: string character(len=slen(string)) :: character_string character_string = maybe(string) end function char_string