09.10.2013, 17:09
Coloca um $ antes para facilitar na procura...
pawn Код:
test("Tipo: objeto - Valor: $300 - Num: 3 - Disponнvel");
test(string[128]) {
new
__i = -1,
__b[sizeof(string)];
while (++__i < strlen(string)) {
if (string[__i] == '$') {
strmid(__b, string, __i, __i+strlen(string));
new
__f = -1;
while (++__f < strlen(__b)) {
if (__b[__f] == '-') {
strdel(__b, __f, strlen(__b));
}
}
format(__b, sizeof __b, "Valor: %s", __b);
print(__b);
}
}
return 1;
}