|
|
|
|
|
LineToPosition (Function) In french: LigneVersPosition Returns the position of the first character of a line in a block of text.
New in version 2025
s is string = [
AA
BB
CC
]
LineToPosition(s, 1)
LineToPosition(s, 2)
LineToPosition(s, 3)
Syntax
<Result> = LineToPosition(<String> , <Line>)
<Result>: Integer Position of the first character in the specified line. <String>: Character string Character string to use. <Line>: Integer Number of the search line. Remarks - The line separator is the CR character (Carriage Return). It corresponds to 2 characters.
- The characters that constitute the line separator are considered as belonging to the previous line.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|