1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <string> #include <iostream> #include <cctype> using namespace std; int main() { string s0("hello world, this is c++, namely c plus plus."); for(auto &c: s0) { if (isalpha(c)) { c = 'x'; } } cout << s0 << endl; }