Re: String in Integer wandeln Kategorie: Programmierung (von reni - 29.12.2001 9:46) | |
Als Antwort auf String in Integer wandeln von KlasRa - 28.12.2001 19:38
| |
hi, probiere es mal damit : function BufToInt(byte buf[],int len)returns int { int i,x,mult; x=0; i=len; mult=1; loop { x=x+(buf[i]-48)*mult; i=i-1; mult=mult*10; if i<0 break; } return x; } aufrufen mit: ... string strZahl; int intZahl; intZahl=BufToInt(strZahl,Str.length(strZahl)); gruÃ? reinhard | |
Antwort schreiben Antworten: Re: String in Integer wandeln (von KlaRa - 29.12.2001 12:24) |