I am trying to evaluate the following from a string
boolean value = evaluate("false || true && true && false || true");
I need to get a boolean value of true for this one.
Any ideas on how to solve this problem in the most efficient way?
|
|
|||||||||||||||||||
|
|
I did a little test with Eval, it only works if you substitute
|
|||
|
|
|
If the only operators are
For more complicated expressions, I found this library just for that. Don't know how efficient it is though. |
||||
|
|
|
You'll need a small boolean expressions grammar. A bit of recursive parsing should do the trick. If you don't know how to write such a parser, you may use JavaCC or something similar. |
|||
|
|
|
there are parsergenerators available for which you can define a grammar. But if you only got || and && as operators and true and false as values you can easily do this by yourself, by implmenting a very simple finite state machine: 1.) Split the string into the tokens 2.) parse the left most value by using Boolean.parseBoolean(token) and safe it's value in some instance variable (your state) 3.) combine your instance variable with the next boolean token using the given operator 4.) Repeat step3 until you finished through the whole string This seems to work although i havent thorougly tested it :)
thats should give you a cirrectly parsed value, but it will get a bit more complex if you allow brackets for example ;) have fun and check here for the theory Finite-state_machine |
||||
|
|