12 Feb
2009
12 Feb
'09
12:28 p.m.
Hi, is it possible to add an expression to an already existing expression object? Something like: sregex re = '$' >> +_d >> '.' >> _d >> _d; replace by: sregex re = '$'; re += +_d; re += '.' >> _d >> _d; My attempts did result in compile time troubles. Thanks for helping, Jan.