libsim Versione 7.2.6
|
◆ f_nblnk()
Return the index of first character in input_string which is not a blank space. If the string is zero-length or contains only blank spaces, LEN(input_string)+1 is returned.
Definizione alla linea 890 del file char_utilities.F90. 891
892INTEGER :: nlines
893
894IF (ASSOCIATED(this%paragraph)) THEN
895 nlines = SIZE(this%paragraph, 2)
896ELSE
897 nlines = 0
898ENDIF
899
900END FUNCTION line_split_get_nlines
901
902
903!> Return the \a nline-th line obtained after splitting. If \a nline
904!! is out of range, a missing value is returned. The line is always
905!! left-aligned and it is padded with trailing blanks up to the
906!! requested line length.
|