REPEAT
— Repeated string concatenationRESULT = REPEAT(STRING, NCOPIES)
STRING | Shall be scalar and of type CHARACTER . |
NCOPIES | Shall be scalar and of type INTEGER . |
CHARACTER
built up from NCOPIES copies of STRING. program test_repeat write(*,*) repeat("x", 5) ! "xxxxx" end program
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-5.4.0/gfortran/REPEAT.html