I have a regex pattern:
boost::regex regex = "@ABC-\\d+"
which means pattern starting with @ABC- and followed by one or more digits.
I want this pattern to be able to match this pattern one or more times that is:
boost::regex regex = "@ABC-\\d+@ABC-\\d+@ABC-\\d+@ABC-\\d+etc, etc"