23.01.2013, 07:13
hey guys just wanna check my understanding of the code here:
basically this:
that should split the full string into its component parts using the , as a separator and put them into the variables specified right?
just checking my understanding which admittedly may be hugely flawed lol
basically this:
pawn Код:
format(filestring,sizeof(filestring), "1,2.4,5.3,6.9,7.2,6,7,hello");
sscanf(filestring, "p<,>iffffiis", int1,float1,float2,float3,float4,int2,int3,string1);
just checking my understanding which admittedly may be hugely flawed lol