The NLP++ functions used formatting and performing input and output operations are listed here in table form for easy reference. For examples of these functions, refer to the individual function pages included in the Formatting and I/O Functions section.
The return types include: STR (string), OSTREAM (output stream) and BOOL (Boolean). Boolean type is currently implemented by integer 1 (or non-zero) for true and 0 for false.
FUNCTION NAME |
RETURNS |
DESCRIPTION |
cbuf() |
OSTREAM |
Output to buffer that user supplied for the current parse (standalone or embedded only). |
cout() |
OSTREAM |
Output to standard output or user-supplied stream (the latter in standalone or embedded only). |
coutreset(fileNameStr) |
OSTREAM |
Bind cout() stream to the given filename. |
closefile(fileOstream) |
BOOL |
Close the output file stream. |
inputrangetofile(start_n,end_n,out_ostr) |
BOOL |
Print a range of chars from the input text to an output stream. (Listed with Parse Tree Functions) |
LJ(num, fieldsize_num) |
STR |
Left-justify num in given field size. |
openfile(fileNameStr) |
OSTREAM |
Open output file stream. |
percentstr(numerator_num, denominator_num) |
STR (" 0" to "100") |
Format a percentage (right-justified in field of 3 chars). |
rightjustifynum(num, fieldsize_num) |
STR |
Right-justify num in given field size. |
today() |
STR |
Format the current date and time as a string. |