funzione ExtractNumber (s: stringa): numero intero;
varietà i: numero intero;
cominciare
se posizione (“=„, s) > 0 allora
s: = copia (s, posizione (“=„, s) +1, lunghezze);
per la i: = 1 alle lunghezze fa
se non (s [i] dentro [“0„. “9„]) allora
cominciare
System.Delete (s, i, lunghezza);
rottura;
estremità;
Risultato: = StrToIntDef (s, 0);
estremità;
|