码迷,mamicode.com
首页 > 其他好文 > 详细

假设用一个名为text的字符串向量存放文本文件的数据,其中的元素或者是一句话或者是一个用于表示段分隔的空字符串。将text中第一段全改为大写形式

时间:2014-08-03 17:40:35      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   文件   数据   

#include<iostream>
#include<string>
#include<vector>
using namespace std;
int main()
{
    vector<string> str={"The is C++ program ","hfh ","","hfdshfisoid"};
    for(auto it=str.begin();it!=str.end()&&!it->empty();++it)
    {
        cout<<*it<<endl;
        for(auto st=(*it).begin();st!=(*it).end();++st)
        {
            *st=toupper(*st);
        }
        cout<<*it<<endl;
    }

    return 0;
}

运行结果:

bubuko.com,布布扣

假设用一个名为text的字符串向量存放文本文件的数据,其中的元素或者是一句话或者是一个用于表示段分隔的空字符串。将text中第一段全改为大写形式,布布扣,bubuko.com

假设用一个名为text的字符串向量存放文本文件的数据,其中的元素或者是一句话或者是一个用于表示段分隔的空字符串。将text中第一段全改为大写形式

标签:style   blog   http   color   os   io   文件   数据   

原文地址:http://www.cnblogs.com/wuchanming/p/3888447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!