在 C 语言中迭代字符串字符
使用字符串时,经常需要单独迭代每个字符。以下是如何在 C 中实现此目的:
1。基于范围的 For 循环(现代 C )
std::string str = "..."; for (char& c : str) { // Operations on c here }
此方法使用基于 for 范围的循环,它提供了一种类型安全且简洁的方法来迭代支持的任何容器的元素begin() 和 end() 方法。
2.基于迭代器的循环
std::string str = "..."; for (std::string::iterator it = str.begin(); it != str.end(); ++it) { // Operations on *it here (dereference the iterator) }
此方法使用迭代器来遍历容器。迭代器提供了一种灵活的低级方式来浏览底层数据结构。
3.传统 For 循环
std::string str = "..."; for (std::string::size_type i = 0; i < str.size(); ++i) { // Operations on str[i] here (access the character directly) }
这是经典的 for 循环方法,您可以在其中控制索引并使用 [] 运算符直接访问字符。对于大多数用例,基于范围的 for 循环因其简单性和可读性而成为首选。
4.以空字符结尾的 C 风格字符串
对于旧式以空字符结尾的字符数组,请使用以下循环:
char str[] = "..."; char* it = str; while (*it) { // Operations on *it here (dereference pointer) ++it; }
在这些方法中,您可以对以下对象执行各种操作循环内的字符,例如字符串操作、字符计数或搜索。
以上是如何在 C 中迭代字符串字符?的详细内容。更多信息请关注PHP中文网其他相关文章!