07.01.2013, 14:58
Hello everyone, i am trying to make converter using pawno, not object converter.
and i wanna string find text then i wanna save the value of the next 7 numbers after the text, for example:
Is that possible ?
like i wanna replace pos=1000.000 with 1000.000.
Thanks for reading
and i wanna string find text then i wanna save the value of the next 7 numbers after the text, for example:
pawn Код:
if(strfind("Pos=1000.000","Pos",true) != -1 )
{
format(string[2],sizeof string[2],"%0.5f",TheNext9LettersAfterPos=);
}
like i wanna replace pos=1000.000 with 1000.000.
Thanks for reading