|
|
|
|
|
PositionToLine (Function) In french: PositionVersLigne Returns the number of the line that contains a character identified by its position in a block of text.
New in version 2025
s is string = [
AA
BB
CC
]
PositionToLine(s, 1)
PositionToLine(s, 2)
PositionToLine(s, 3)
PositionToLine(s, 5)
Syntax
<Result> = PositionToLine(<String> , <Position>)
<Result>: Integer Number of the line that contains the specified character. <String>: Character string Character string to use. <Position>: Integer Position of the character. Remarks The line separator is the CR character (Carriage Return). Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|