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