15 Jan
2007
15 Jan
'07
4:59 a.m.
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