在C++中,遍歷字符串可以使用以下幾種技巧:
std::string str = "hello";
for (int i = 0; i < str.length(); i++) {
char c = str[i];
// 這里對字符c進行操作
}
std::string str = "hello";
for (char c : str) {
// 這里對字符c進行操作
}
std::string str = "hello";
for (std::string::iterator it = str.begin(); it != str.end(); it++) {
char c = *it;
// 這里對字符c進行操作
}
無論使用哪種方法,都可以對字符串中的每個字符進行遍歷操作。根據具體需求選擇最適合的方法來遍歷字符串。