欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

字符串按逗号切割 C++

程序员文章站 2022-07-14 11:58:10
...

例子:sdjb,1324

 

#include <iostream>     // std::cin, std::cout
#include <cstring>
using namespace std;

int main ()
{
  string s;
  cin>>s;
  string::size_type p;
  p=s.find(",");

  string temp;
  temp.assign(s,0,p);
  cout<<temp<<endl;
}