03.06.2017, 15:49
Quote:
Спасибо.
Удаляю PHP код:
|
PHP код:
new pos;
while((pos = strfind(inputtext, "{",true)) != -1)
strdel(inputtext, pos, pos+1);
PHP код:
new c = 0,
i = -1;
while((c = inputtext[++i]) != '\0')
{
switch(c)
{
case '{':
inputtext[i] = '[';
case '}':
inputtext[i] = ']';
}
}