在 C 语言中循环字符串中的字符
迭代字符串中的字符是编程中的常见任务。以下是在 C 中实现此目的的不同方法:
基于范围的 For 循环(C 11 及以上)
std::string str = ???; for (char& c : str) { // Perform actions on the character 'c' }
基于迭代器的 For循环
std::string str = ???; for (std::string::iterator it = str.begin(); it != str.end(); ++it) { // Perform actions on the character '*it' }
传统 For 循环
std::string str = ???; for (std::string::size_type i = 0; i < str.size(); ++i) { // Perform actions on the character 'str[i]' }
空终止字符数组循环
For C 风格以 null 结尾的字符串,使用:
char* str = ???; for (char* it = str; *it; ++it) { // Perform actions on the character '*it' }
以上是如何迭代 C 字符串中的字符?的详细内容。更多信息请关注PHP中文网其他相关文章!