LoadTextLines


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
Input value inFile str
Input value inLineDelimiter str "\"\\\\r\\\\n\"" End of line character sequence, escaped
Input value inSkipEmptyLines bool False
Output value outTextLines list[str]