Appends a variable string defined by the format parameter to the end of the data of the string builder.
Appends a variable string defined by the format parameter to the end of the data of the string builder.This function will append at most 4096 bytes of data to the string buffer. If you need to append more bytes, use the function pblStringBuilderAppendN.
For the possible values of the format parameter, see the documentation of the printf(3) family of functions.
This function has a time complexity of O(N), with N being the length of the string being appended.