We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For my project, I need to parse expressions and get a list of used symbols in that expression. This would look something like this:
String input = "x+y*z+3"; Expression e = Parser().parse(input); List<String> symbols = e.symbols; // ["x", "y", "z"]
Is that possible with the current state? I couldn't find the function on my own.
The text was updated successfully, but these errors were encountered:
Hi @herrytco thanks for creating this issue. It's currently not possible to get a list of symbols/variables directly from the expression tree.
Sorry, something went wrong.
Thank you for the answer. Than I fall back to my current strategy to do the following:
any plan to implement this feature?
No, but feel free to open a PR if you're wanting to contribute this.
No branches or pull requests
For my project, I need to parse expressions and get a list of used symbols in that expression. This would look something like this:
Is that possible with the current state? I couldn't find the function on my own.
The text was updated successfully, but these errors were encountered: