This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Advance the current position variable till the next End Of Line.
Syntax
n = Tokenizer_MoveToEol(BufferVariable, CurrentPositionVariable [, OnlyRealCRLF])
Returns
Number
Parameters
Name |
Type |
Optional |
Meaning |
BufferVariable |
String variable |
No |
The name of an existent keyword name. Keyword can be taken from whatever module but module must already been loaded. |
CurrentPositionVariable |
Numeric variable |
No |
A variable containing the current Tokenizer position. It will be moved to the next end of line char (or chars) |
OnlyRealCRLF |
Numeric |
Yes |
If %TRUE, only CR (carriage return) or LF (line feed) will be considered in searching for the next EOL. If omitted or %FALSE, also chars defined by script as new line chars will be considered. |
Remarks
Important: BufferVariable and CurrentPositionVariable parameters must be variable and not expressions. This is because they must be passed by reference in order to get back information.
Restrictions
See also
Examples