10 Nov
2011
10 Nov
'11
4:49 a.m.
Here is a really simple explanation I just figured out to explain the problem I am trying to solve: std::string s1=garbagetext1+number1+name1+garbagetext4; std::string s3=garbagetext2+(number1+2)+name1+garbagetext5; std::string s5=garbagetext3+(number1+4)+name1+garbagetext6; If this pattern is found: return s1.substr(number1+name1); How can I do this using boost [or other] libraries? Thanks for all suggestions, Alec Taylor