Re: Split Kategorie: Programmierung (von Johannes - 19.12.2003 21:31) | |
Als Antwort auf Split von Johannes - 19.12.2003 20:46
| |
Ich habs nun doch mal selber programmiert: function Split(string e, byte d, string r[]) { int a; int newindex; newindex = 0; int last; last = 0; int strlegth; for a = 0...30 { byte c; strx.mid(e,c,a,1); if c == d { strlegth = (a - 1) - (last); strx.mid(e,r[newindex],last + 1,strlegth); newindex = newindex + 1; } } } Optimierungsvorschläge? Gru� Johannes | |
Antwort schreiben Antworten: Re: Split (von Johannes - 20.12.2003 12:49) Re: Split (von Johannes - 20.12.2003 14:04) Re: Split (von André H. - 20.12.2003 14:49) Re: Split (von Johannes - 20.12.2003 18:27) |