get a character from a string c++ code example
Example 1: find character in string c++
auto char_to_find = 'a'
if (str.find(char_to_find) != std::string::npos) {
}
Example 2: index string c++
#include <string>
#include <iostream>
int main(){
std::string string = "Hello, World!";
char stringindex = string[2];
}
Example 3: indexing strings in c++
#include <iostream>
#include <string>
int main ()
{
std::string str ("Test string");
for (int i=0; i<str.length(); ++i)
{
std::cout << str[i];
}
return 0;
}
Example 4: how to access the element of string in c++
string myString = "Hello";
cout << myString[0];