Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
char* text = "Hallo_Welt!";
#include <iostream>
using namespace std;
int main(){
string word = "Hallo_Welt";
word.replace(word.find("_"), 1, " ");
cout << word << endl;
}
Du meinst in einen char* - also einen Pointer auf char, oder?Kaiser206 hat gesagt.:Ok, jetzt klappt alles.
Es gibt aber noch ein Problem.
Wie wandle ich jetzt den String in ein char um?
string hallo = "hallo";
const char* str = hallo.c_str();
#include <algorithm>
using namespace std;
string hallo = "hallo_welt_hier_bin_ich";
replace (hallo.begin(), hallo.end(), '_', ' ');
cout << hallo << endl;