循環字串中的字元
遍歷字串中的每個字元是程式設計中常見的操作。在 C 中,有多種方法可以實現此目的:
基於範圍的 for 迴圈(C 11以上):
此循環提供了一種優雅的迭代語法字串中的每個字元:
std::string str = ""; for (char &c : str) { // Perform operations on `c` }
循環迭代器:
使用迭代器,您可以順序存取字元:
std::string str = ""; for (std::string::iterator it = str.begin(); it != str.end(); ++it) { // Perform operations on `*it` }
傳統for 迴圈:
這個經典方法使用循環遍歷每個字串的大小索引:
std::string str = ""; for (std::string::size_type i = 0; i < str.size(); ++i) { // Perform operations on `str[i]` }
空終止字元陣列的循環:
對於C 樣式字串,使用迭代直到遇到空字元的循環:
char *str = ""; for (char *it = str; *it; ++it) { // Perform operations on `*it` }
這些方法提供了在 C 中循環字串字元的不同方法,每種方法都有自己的優點和缺點。基於範圍的 for 迴圈提供了簡潔易讀的程式碼,而傳統迴圈提供了對迭代的最大控制。
以上是如何迭代 C 字串中的字元?的詳細內容。更多資訊請關注PHP中文網其他相關文章!