I want to get a list of the symbols out of an expression in ExprTk (not the ones I registered, but the ones that are in the expression. E.g. when the expression is
const std::string expression_string = "abs(sin(x)^2+5*y)";
I need to get x and y as result as a list/vector or something. How can I do this?