StringListSave

Saves a list of strings in a file.

SYNTAX
StringListSave(stringList, fileName) 
StringListSave(stringList, fileName, encoding) 
ARGUMENTS

stringList Name of the string list.
fileName Name of the file to which the list is saved.
encoding You can use the following values as encoding parameters:
  • Empty string. In this case, the default encoding (ANSI code page of the operating system) is used.
  • Code page. For example, "1252"
  • Name. For example, "windows-1252"
  • User-friendly name. For example, "Western European" (Windows)

For a list of possible encoding parameters, see Encoding parameters.

EXAMPLE
StringlistSave("SListe", "c:\Temp\Test.lst")