c_cpp 根据空间拆分字符串并将每个标记转换为大写。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 根据空间拆分字符串并将每个标记转换为大写。相关的知识,希望对你有一定的参考价值。

#include <sstream>
#include <iostream>
#include <string>
#include <algorithm>

std::string toupper(std::string& s) {
    for(std::string::iterator c=s.begin(); c!=s.end(); c++) {
        *c = std::toupper(*c);
    }
    return s;
}

int main(int argc, char* argv[]) {
    std::string s = "Innovation links to the future";
    std::string token;
    std::istringstream is(s);

    while(is >> token) {
        std::cout << "token: " << toupper(token) << std::endl;
    }

    return 0;
}

以上是关于c_cpp 根据空间拆分字符串并将每个标记转换为大写。的主要内容,如果未能解决你的问题,请参考以下文章

将字符串拆分为列表并将项目转换为 int

将字符串拆分为标记并将标记分成两个单独的数组

根据正则表达式拆分字符串

拆分用逗号分隔的字符串并将值存储到 int 数组中

如何在 Ruby 中拆分分隔字符串并将其转换为数组?

T-SQL基于分隔符拆分列并将拆分后的字符串数组输入到多个表列中