LINE_END
Returns a pattern that matches the end-of-line condition.
Syntax
pattern := LINE_END
Example
The following procedure moves the active editing position to the end of
the line, unless you are already there:
PROCEDURE user_end_of_line
eol_pattern := LINE_END;
eol_range := SEARCH (eol_pattern, FORWARD);
IF eol_range <> 0
THEN POSITION (eol_range);
ENDIF;
ENDPROCEDURE;
Related topics
END_OF LINE_BEGIN