REPEAT — Repeated string concatenation#
-
REPEAT(STRING, NCOPIES)#
Concatenates
NCOPIES
copies of a string.- Parameters
STRING – Shall be scalar and of type
CHARACTER
.NCOPIES – Shall be scalar and of type
INTEGER
.
- Returns
A new scalar of type
CHARACTER
built up fromNCOPIES
copies ofSTRING
.
- Standard:
Fortran 90 and later
- Class:
Transformational function
- Syntax:
RESULT = REPEAT(STRING, NCOPIES)
- Example:
program test_repeat write(*,*) repeat("x", 5) ! "xxxxx" end program