首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

从string对象中去掉标点

2013-03-13 
从string对象中去掉标点符号#include test.h#include cctype#include iostream.hint main(){string

从string对象中去掉标点符号
#include "test.h"

#include <cctype>

#include <iostream.h>


int main()
{
string str;
cin >>str;
string str1;
for (string::size_type st = 0; st != str.size(); st++)
{
if (!ispunct(str[st]))                                                    //如果不是标点,加到另一个字符串中
{
str1 += str[st];
}
}
cout << str1;
return 0;
}

热点排行