I've got a string that I make dynamically. At the end I've got this:
fullcondition: "5439=5436 or 5439=5438"
The variable fullcondition contains "5439=5436 or 5439=5438"
with these double quotes.
fullcondition is used after in an if statement and that's why I need to remove double quotes.
if ("5439=5436 or 5439=5438")
does not work What I need is:
if (5439=5436 or 5439=5438).
Thanks in advance.