Loads text lines from a file.
Syntax
C++
Python
def LoadTextLines( inFile: str, /, *, inLineDelimiter: str = "\\\\r\\\\n", inSkipEmptyLines: bool = False ) -> outTextLines: list[str]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inFile | str | ||
![]() |
inLineDelimiter | str | "\\\\r\\\\n" | End of line character sequence, escaped |
![]() |
inSkipEmptyLines | bool | False | |
![]() |
outTextLines | list[str] |


