10.11.2015, 22:01
Try with it:
If your variable can be change, before format use VariavelString[0] = EOS;
[0] - first char of your string and EOS - End Of String. Thanks to the fact You're making VariavelString empty before insert string into another string.
Also there's a one more function called strins:
Код:
format(VariavelString, sizeof(VariavelString), "%s", inputtext);
[0] - first char of your string and EOS - End Of String. Thanks to the fact You're making VariavelString empty before insert string into another string.
Also there's a one more function called strins:
Код:
strins(VariavelString, inputtext, 0);