Node: LLe Intrinsic, Next: LLt Intrinsic, Previous: Link Intrinsic (subroutine), Up: Table of Intrinsic Functions
LLe(String_A, String_B)
LLe: LOGICAL(KIND=1) function.
String_A: CHARACTER; scalar; INTENT(IN).
String_B: CHARACTER; scalar; INTENT(IN).
Intrinsic groups: (standard FORTRAN 77).
Description:
Returns .TRUE. if String_A.LE.String_B,
.FALSE. otherwise.
String_A and String_B are interpreted as containing
ASCII character codes.
If either value contains a character not in the ASCII
character set, the result is processor dependent.
If the String_A and String_B are not the same length, the shorter is compared as if spaces were appended to it to form a value that has the same length as the longer.
See LGe Intrinsic, for information on the distinction
between the LLE intrinsic and the .LE.
operator.