str_append Subroutine

public subroutine str_append(dest, source, sep)

Appends a copy of the source string to the dest string, with optional string sep in between. It is assumed that dest is long enough to hold the result, otherwise an error will be generated.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(inout) :: dest
character(len=*), intent(in) :: source
character(len=*), intent(in), optional :: sep

Contents

None