Necesitamos tu ayuda para compartir nuestros escritos con relación a las ciencias informáticas.
Ejemplo 1: c++ string acceso a elementos
// string::operator[]#include #include intmain()
std::string str("Test string");for(int i=0; i<str.length();++i)
std::cout << str[i];return0;
Ejemplo 2: cómo obtener una sección de un string en C++
// string::substr#include #include usingnamespace std;intmain()
string str="We think in generalities, but we live in details.";// quoting Alfred N. Whitehead
string str2, str3;
size_t pos;
str2 = str.substr(12,12);// "generalities"
pos = str.find("live");// position of "live" in str
str3 = str.substr(pos);// get from "live" to the end
cout << str2 <<' '<< str3 << endl;return0;
Recuerda dar recomendación a este artículo si lograste el éxito.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)