首页 >后端开发 >C++ >如何迭代 C 字符串中的字符?

如何迭代 C 字符串中的字符?

Linda Hamilton
Linda Hamilton原创
2024-11-30 10:37:08910浏览

How Can I Iterate Through Characters in a C   String?

在 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn