how do we join strings with other strings, and strings with integers in pawn?
something like sprintf();
MyString[256] = "this is a test string";
MyInt = 1;
sprintf("%s %s %s %d \n", "this joins", MyString, "with", MyInt);
thankyou very much.
something like sprintf();
MyString[256] = "this is a test string";
MyInt = 1;
sprintf("%s %s %s %d \n", "this joins", MyString, "with", MyInt);
thankyou very much.