Boost logo

Boost Users :

From: Pete (petehug_at_[hidden])
Date: 2007-01-14 23:59:11


I was wondering if anyone knew of a publicly available class library that
suports? Perhaps there is even something in boost?

What I'm after is something that would enable me to implement something
along the following lines:

Series a("[0-9,1]");
Series b("[a-z,2]");
Series c("[A-E0-9,3]");
Series::iterator i;

for (i=a.begin();i!=a.end();itr++)
  cout << *i;
cout << endl;
for (i=b.begin();i!=b.end();itr++)
  cout << *i;
cout << endl;
for (i=c.begin();i!=c.end();itr++)
  cout << *i;
cout << endl;

Output:
0123456789
acegikmoqsuwy
AD147

Thanks for any hints in advance
Pete


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net