There are 2 variables and I need to sum them. But instead using the + sign I'd like to change it for a String.
double var1 = 1;
double var2 = 2;
String sign = "+";
double variable3 = var1 sign var2;
I'd like to sum them using the "sign" instead, But i don't know if there's a way to do this.