Public Member Functions | |
| subroutine | concat_tail (carray, str, result) |
Definition at line 149 of file dc_string.f90.
| subroutine dc_string::concat::concat_tail | ( | character(*), dimension(:), intent(in) | carray, |
| character(*), intent(in) | str, | ||
| character(string), dimension(:), pointer | result | ||
| ) |
Concatenate string to array elements
Appends str to the end of each element of character array carray and returns in result. Trailing spaces of carray elements are ignored. The array size of result(:) is determined automatically based on carray size. result(:) must be null or undefined when passed. Memory leak occurs if already allocated.
| [in] | carray | Character array |
| [in] | str | String to append |
| [out] | result | Result array pointer |
Definition at line 1168 of file dc_string.f90.