Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Leerzeichen aus Variable entfernen

Empfohlene Antworten

Hi ich bin gerade dabei ein C Programm unter AIX zu schreiben.

Alles funktioniert auch wunderbar, doch wie bekomme ich Leerzeichen aus einer Variable heraus ...

Z.B. sieht die variable so aus

"TESTEXT 19243"

Jetzt möchte ich gerne die Leerzeichen zwischen TESTEXT und der Zahl entfernen, wie geht das?

Danke :)

UNGETESTET:

#include <stdio.h>


char* remove_spaces(char* str)

{

	int s=0;

	int t=0;

	while (str[s] != '\0')

	{

		if (str[s] != ' ')

			str[t++] = str[s];

		s++;

	}

	str[t] = '\0';

	return str;

}


int main()

{

	char* string = "Dies ist ein kleiner Test";


	printf("%s\n",remove_spaces(string));


	return 0;

}

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.