|
◆ f_nblnk()
elemental integer function, public char_utilities::f_nblnk |
( |
character(len=*), intent(in) |
input_string, |
|
|
character(len=1), intent(in), optional |
blnk |
|
) |
| |
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.
- Parametri
-
[in] | input_string | string to be scanned |
[in] | blnk | optional blank character, if not provided, a blank space is assumed |
Definizione alla linea 916 del file char_utilities.F90.
918 END FUNCTION line_split_get_line 926 FUNCTION default_columns() RESULT(cols) 929 INTEGER, PARAMETER :: defaultcols = 80 930 INTEGER, PARAMETER :: maxcols = 256 931 CHARACTER(len=10) :: ccols
|