C++字符串處理 和 std::transform

例子:ios char exchange(char c) { if (c <= 'Z' && c >= 'A') c = tolower(c); else if (c >= 'a' && c <= 'z') c = toupper(c); return c; } tolower 轉小寫 toupper 轉大寫web 所有轉小寫svg char op(char ch) {
相關文章
相關標籤/搜索