21.09.2010, 22:36
Just do this
pawn Код:
for(new i; i<10; i++)
{
new smallstr[5];
format(smallstr, sizeof(smallstr), "%d", i);
if(strfind(string, smallstr) != - 1) return true; //There is numbers
}
return false; //There isn't any numbers

