f$Stringbuffer_Init
f$Stringbuffer_Init
Initialize the string buffer. By the generation of XML structures, the strings can be very large. The assembling of very long strings can degrade the performance. In order to prevent this, such a buffer can be assembled efficiently with the functions f$Stringbuffer_Init, f$Stringbuffer_Add and f$Stringbuffer_Get.
Syntax: | f$Stringbuffer_Init ( ) |
Example: | f$Stringbuffer_Init ( ) f$Stringbuffer_Add ( ’abc’ ) Result: Erg = abc123 |