在C++中,我們可以使用std::tolower()
函數將字符轉換為小寫形式。要在循環中使用std::tolower()
函數,我們可以使用一個循環來遍歷字符串的每個字符,并將每個字符轉換為小寫形式。
以下是一個示例循環,使用std::tolower()
函數將字符串中的所有字符轉換為小寫形式:
#include <iostream>
#include <cctype>
int main() {
std::string str = "Hello World";
for (char &c : str) {
c = std::tolower(c);
}
std::cout << "Lowercase string: " << str << std::endl;
return 0;
}
在上面的示例中,我們使用for
循環遍歷字符串str
中的每個字符,并使用std::tolower()
函數將字符轉換為小寫形式。最后,我們打印出轉換后的字符串。