Parse a line by it's number
-
How can i parse #th(5th) line of the SOURCE? (without a fixed left and right string)
if there is multiple ways, write them all please, ty
-
Parse block -> Regex -> Pattern:
[^\n].*[$\n]
Output:[0]
Recursive: Yes Index: 4 (which is the 5-th line)
-
If there's no index, just parse everything with recursive and then you can write something like
<OUTPUT[4]>
to get the 5-th value from the output list.