LEN
— Length of a character entity ¶Returns the length of a character string. If STRING is an array, the length of an element of STRING is returned. Note that STRING need not be defined when this intrinsic is invoked, since only the length, not the content, of STRING is needed.
Fortran 77 and later, with KIND argument Fortran 2003 and later
Inquiry function
L = LEN(STRING [, KIND])
STRING | Shall be a scalar or array of type
CHARACTER , with INTENT(IN) |
KIND | (Optional) An INTEGER initialization
expression indicating the kind parameter of the result. |
The return value is of type INTEGER
and of kind KIND. If
KIND is absent, the return value is of default integer kind.
Name | Argument | Return type | Standard |
LEN(STRING) | CHARACTER | INTEGER | Fortran 77 and later |
LEN_TRIM
— Length of a character entity without trailing blank characters,
ADJUSTL
— Left adjust a string,
ADJUSTR
— Right adjust a string