Summary
A character string or character code is concatenated with the text buffer. Adds the data of Parameter 2 (Text) to the last of the contents of Parameter 1 (Contact Data Buffer).
Format
_strcat (String data buffer, String)
Parameter 1: Data Buffer
Parameter 2: Text, Numeric Value (Text Code), Data Buffer (The valid range for Parameter 2 is 0 and from 1 to 255.)
Example expression 1:
_strcat (databuf0, "ABCD")
When "ABCD" is concatenated according to the above, the result is as follows. Note that "NULL (0x00)" is added.
A string of up to 255 characters can be specified.
If you set an
empty string for the numeric value 0 to Parameter 2, Parameter
1's data buffer does not change.
For example,
_strcat (databuf0,"")
_strcat (databuf0,0)