- #include<iostream>
- #include<cstdlib>
- #include<sstream>
- using namespace std;
- int main(){
- string str="123.45.6789.111213";
- str+=".";
- string res[50];
- string tmp="";
- int index=0;
- for(int i=0;i<str.size();i++){
- if(str[i]=='.'){
- res[index]=tmp;
- tmp="";
- index++;
- }
- else{
- tmp+=str[i];
- }
- }
- for(int i=0;res[i]!="";i++){
- cout<<res[i]<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |