24.03.2009, 10:30
pawn Код:
new
text[128],string[128];
Use 'strtok'.
pawn Код:
new
text[128], string[128], idx;
text = strtok(params, idx);
string = strtok(params, idx);
pawn Код:
stock strtok(const string[], &index, seperator=' ')
{
new length = strlen(string);
new offset = index;
new result[127];
while ((index < length) && (string[index] != seperator) && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
if ((index < length) && (string[index] == seperator))
{
index++;
}
return result;
}