Forum: C# |
Thema:
AW: in CharArray oder string alle Leerzeichen entfernen??? |
Von:
G. Guest (
07.04.2008 02:00) |
void trim(char* trimArray)
{
int i = 0;
int nbs = 0;
char noNBS[MAX_LENGTH];
for (i; trimArray[i] != '\0'; i++)
{
if(trimArray[i] == ' ')
{
nbs++;
}
if(trimArray[i] != ' ')
{
noNBS[i-nbs] = trimArray[i];
}
}
strcpy(trimArray,noNBS);
}
so würde ich es in c machen
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!