您的当前位置:首页正文

istringstream用法

2024-11-30 来源:个人技术集锦

1.istringstream对象可以绑定一行字符串,然后以空格为分隔符把该行分隔开来。

 
 
[cpp]


input:
abc   df   e              efgeg      ffg

ouput:
abc
df
e
efgeg
ffg

2.

  1. #include<iostream>  
  2. #include<sstream>       //istringstream 必须包含这个头文件
  3. #include<string>  
  4. using namespace std;  
  5. int main()  
  6.  
  7.     string str="i an boy";  
  8.     istringstream is(str);  
  9.     string s;  
  10.     while(is>>s)  
  11.      
  12.         cout<<s<<endl;  
  13.      
  14.       

输出是:

i

am

a

boy


显示全文