Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ spliting string by delimiters and keeping the delimiters in result

I'm looking for a way to split string by multiple delimiters using regex in C++ but without losing the delimiters in output, keeping the delimiters with splitted parts in order, for example:

Input

aaa,bbb.ccc,ddd-eee;

Output

aaa , bbb . ccc , ddd - eee ;

I've found some solutions for this but all in C# or java, looking for some C++ solution, preferably without using Boost.

like image 287
Loki Avatar asked Oct 27 '25 03:10

Loki


1 Answers

You could build your solution on top of the example for regex_iterator. If, for example, you know your delimiters are comma, period, semicolon, and hyphen, you could use a regex that captures either a delimiter or a series of non-delimiters:

([.,;-]|[^.,;-]+)

Drop that into the sample code and you end up with something like this:

#include <iostream>
#include <string>
#include <regex>

int main ()
{
  // the following two lines are edited; the remainder are directly from the reference.
  std::string s ("aaa,bbb.ccc,ddd-eee;");
  std::regex e ("([.,;-]|[^.,;-]+)");   // matches delimiters or consecutive non-delimiters

  std::regex_iterator<std::string::iterator> rit ( s.begin(), s.end(), e );
  std::regex_iterator<std::string::iterator> rend;

  while (rit!=rend) {
    std::cout << rit->str() << std::endl;
    ++rit;
  }

  return 0;
}

Try substituting in any other regular expressions you like.

like image 178
Michael Urman Avatar answered Oct 28 '25 18:10

Michael Urman