cmattocks
Results
2
comments of
cmattocks
Perhaps this is a more robust way to zap (clear) a character string: string = repeat(' ', len(string)) https://software.intel.com/en-us/fortran-compiler-18.0-developer-guide-and-reference-repeat Craig > On Sep 24, 2018, at 4:53 PM, Maik Riechert...
Yes, good point - the two forms work the same way. To prevent bounds overflows, one can do this (truncate input if necessary): program testStrings implicit none character(len = 8)...