Return a string that is a join of an array of strings.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(string), | intent(in) | :: | array(1:) |
Array to be joined. |
||
| character(kind=CK, len=*), | intent(in), | optional | :: | sep |
Separator. |
The join of array.
Return a string that is a join of an array of characters.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(kind=CK, len=*), | intent(in) | :: | array(1:) |
Array to be joined. |
||
| character(kind=CK, len=*), | intent(in), | optional | :: | sep |
Separator. |
|
| logical, | intent(in), | optional | :: | is_trim |
Flag to setup trim character or not |
The join of array.
Return a string that is a join of columns or rows of an array of strings.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(string), | intent(in) | :: | array(1:,1:) |
Array to be joined. |
||
| character(kind=CK, len=*), | intent(in), | optional | :: | sep |
Separator. |
|
| logical, | intent(in), | optional | :: | is_col |
Direction: ‘columns’ if .true. or ‘rows’ if .false. |
The join of array.
Return a string that is a join of columns or rows of an array of characters.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(kind=CK, len=*), | intent(in) | :: | array(1:,1:) |
Array to be joined. |
||
| character(kind=CK, len=*), | intent(in), | optional | :: | sep |
Separator. |
|
| logical, | intent(in), | optional | :: | is_trim |
Flag to setup trim character or not |
|
| logical, | intent(in), | optional | :: | is_col |
Direction: ‘columns’ if .true. or ‘rows’ if .false. |
The join of array.