Necesitamos tu ayuda para compartir nuestros artículos acerca de las ciencias informáticas.
Ejemplo 1: c++ reemplaza el carácter en string
#include #include voidsome_func()
std::string s ="example string";
std::replace( s.begin(), s.end(),'x','y');// replace all 'x' to 'y'
Ejemplo 2: c++ reemplaza el carácter en string
#include #include usingnamespace std;
string test ="abc def abc def";// The string to replace// You need to write your part to replace inside the regex(), and write what is the replacement after
test =regex_replace(test,regex("abc"),"Ziv");// The replacement.
Si posees algún recelo o forma de arreglar nuestro tutorial te insinuamos añadir una aclaración y con placer lo interpretaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)