Right-adjust the character sequence represented by the string. The length of the character sequence remains unchanged.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | string |
elemental function adjustr_string(string) result(adjusted_string) type(string_type), intent(in) :: string type(string_type) :: adjusted_string adjusted_string = adjustr(maybe(string)) end function adjustr_string