I am writing some function in VEE to judge if a statement is true or not dynamically. For example, I have a string that says "3>2" or "4<100", and I need to know if that statement of the string is true or not. I tried the build-in IF/Else/Then flow but failed to find any control input. How can I evaluate the string to see if it is true or not?
Thanks!
Thanks!
One thing that could make it more complicated is the data type; you were calling it “Strings” but using numbers as examples. If it is truly numbers (3<2 or 4<100), then it is easy, and that is what I used in my example, but if it is strings (“Jane”<”Two”) then it would be more complicated.