Examples
STRCPY(varplcstr, ‘example string’);STRCPY(@mystr, ‘for the manual’);VARDINT := 123;STRCAT(varplcstr, ‘ ‘);STRCAT(varplcstr, VARDINT);STRCAT(varplcstr, ‘ ‘);STRCAT(varplcstr, @mystr);resultcmp = STRCMP(varplcstr, ‘example string 123 for the manual’);if (resultcmp = 0) thenSTRCPY(@mystr, ‘ok’);end_if;