addString

Top  Previous  Next

Adds the content of a string at the end of the WorkFile.

Syntax

addString(value)

Parameters

value

String to be added

Return code

None.

Sample

var concatenated=createWorkFile();
concatenated.addString("first string of data"+NL);
concatenated.addString("second string of data"+NL);
dd("FILEIN", concatenated.getDD());