REPEAT — Repeated string concatenation ¶RESULT = REPEAT(STRING, NCOPIES)
Concatenates NCOPIES copies of a string.
Transformational function
| STRING | Shall be scalar and of type CHARACTER. |
| NCOPIES | Shall be scalar and of type INTEGER. |
A new scalar of type CHARACTER built up from NCOPIES copies
of STRING.
program test_repeat
write(*,*) repeat("x", 5) ! "xxxxx"
end program
Fortran 90 and later